Displaying 20 results from an estimated 18273 matches for "verifi".
Did you mean:
verify
2013 Nov 19
2
[LLVMdev] Debug Info Verifier: should we create a module pass for it?
Hi all,
Currently, debug info verifier is part of the IR verifier which is a
function pass.
One part of the IR verifier that I don't like is it verifies module-level
data in doFinalization. If we have two verifier passes in a single module
pass manager, doFinalization of the two passes will run on the same module
data after all p...
2013 Dec 19
1
[LLVMdev] Debug Info Verifier: should we create a module pass for it?
On Mon, Dec 16, 2013 at 4:05 PM, Eric Christopher <echristo at gmail.com>wrote:
> My off the cuff idea here is to make it a module pass, but we'll split the
> verification a bit:
>
> a) IR verification time -
>
> Verify debug metadata attached to instructions (i.e. line information).
> Only check it for structure (i.e. do the various metadata nodes have the
> right number and kind of operands).
>
It makes things a little complicated by havi...
2013 Dec 17
0
[LLVMdev] Debug Info Verifier: should we create a module pass for it?
My off the cuff idea here is to make it a module pass, but we'll split the
verification a bit:
a) IR verification time -
Verify debug metadata attached to instructions (i.e. line information).
Only check it for structure (i.e. do the various metadata nodes have the
right number and kind of operands).
b) Module pass -
Walk down from the CUs in the file and verify everything w...
2018 Apr 25
2
4.3.11-Ubuntu fail to add DC to a AD domain
Rowland, thank you for answering!
I have investigated this a bit, and I think that using 18.04 for the new DC
will not be successful anyway. Reasons: the AD I have has been created back
in the days when 14.04 LTS was fresh. The provisioning scripts worked
differently. 14.04 has been upgraded to 16.04, and I think that I do not
have all of the DNSes configured properly and this might be the cause
2016 Jul 08
3
Running verify between every opt pass?
Hi,
Is there any easy way to run the verifier between each pass in opt if I
do e.g. opt -O3 foo.ll -o foo.opt.ll ?
If I add -verify after -O3 I get one invocation of the verifier first in
the FunctionPass manager and then get two (!) runs of the verifier after
all other passes are run.
Then I saw the flag -verify-each which sounds promi...
2016 Mar 09
2
Where is the time going? - update
Further to my previous email, I now have some answers. The culprit is the
IR verifier.
1. opt -time-passes does not report time spent in the IR verifier.
If I add -disable-verify, opt's run time drops from 71 seconds to 37
seconds.
2. -disable-verify doesn't disable all verification runs.
The IR verifier is run 3 times: once prior to any optimization work, once
between...
2018 Apr 25
1
4.3.11-Ubuntu fail to add DC to a AD domain
yes, I tried working with samba wiki and quad-verifying what is recommended
to be checked.
OK, I'll try to join using 18.04.
the samba_dnsupdate tool does not have the --use-samba-tool option in
ubuntu 16.04
2018-04-25 22:47 GMT+02:00 Rowland Penny via samba <samba at lists.samba.org>:
> On Wed, 25 Apr 2018 22:32:10 +0200
> Jakub Kulesza <jakkul+samba at gmail.com> wrote:
2018 Jul 12
5
Should Verifier be an analysis?
Hello all,
I came across the code of Verifier, and see that it doesn't modify the IR
at all. Why it is not considered as an analysis pass?
Actually, this will have impact on debugify-each and
print-before/after-all: we are not supposed to print/debugify Verifier
pass, but since Verifier is declared as a transformation (well, a
non-analy...
2018 Apr 25
0
4.3.11-Ubuntu fail to add DC to a AD domain
On Wed, 25 Apr 2018 22:32:10 +0200
Jakub Kulesza <jakkul+samba at gmail.com> wrote:
> Rowland, thank you for answering!
>
> I have investigated this a bit, and I think that using 18.04 for the
> new DC will not be successful anyway. Reasons: the AD I have has been
> created back in the days when 14.04 LTS was fresh. The provisioning
> scripts worked differently. 14.04 has
2010 Mar 06
4
[LLVMdev] Changes between 2.6 and 2.7: SSA Verifier and visitFreeInst
Hi llvm,
1) The lib/VMCore/Verifier.cpp in 2.7 implements Verifier::VerifyType,
which is empty in 2.6. I noticed that it does not check all types,
for example, UnionTyID, OpaqueTyID, LabelTyID, MetadataTyID
and etc are ignored in the 'default' branch. Does it mean we dont
need to check them?
Another question is: How much d...
2013 Jun 25
0
[LLVMdev] Proposal: type uniquing of debug info for LTO
...ebug values & debug info metadata
> should be reasonably assumed to be valid if it's accessed through the
> relevant entry points (navigating from debug info for a
> function/variable, from a dbg_value/declare intrinsic, etc... we
> shouldn't be conditionalizing based on the verification of these
> values) - at some point we'd want to add an up-front verifier that
> checks these invariants in one go (& doesn't bother with it when the
> IR was generated from a trusted front end, in the same way don't use
> the IR verifier in those cases).
Sorry for...
2010 Apr 20
2
[LLVMdev] Disable the Module Verifier pass?
Hello,
Is there anyway to disable the module verifier pass (in llvm-ld and llc)?
I got an error as " Instruction does not dominate all uses!".
Obviously, there must be something wrong. The module verifier simply
aborts `llvm-ld` instead of generating bytecode. If somehow I can
disable the module verifier, then I can use llc to produce LLV...
2019 Nov 24
4
Problems setting up samba bind9_dlz on Ubuntu 18.04
Hi,
I hope someone can help me with the following problem. I followed the following guides to setup samba as an additional active directory server to my windows server with bind9 dns:
https://www.tecmint.com/join-additio...r-replication/<https://www.tecmint.com/join-additional-ubuntu-dc-to-samba4-ad-dc-failover-replication/>
2012 Apr 25
2
[LLVMdev] CriticalAntiDepBreaker rewrites a register operand of a call instruction
Hi Anton,
I ran llc with -verify-coalescing. There were no error messages.
Then I added code in MipsPassConfig::addPreEmitPass() to prevent machine
verifier from running post delay -slot-filler, and ran llc again. Again,
there were no error messages.
This is the list of passes run after post-RA scheduling. machine verifier
is run twice after post RA scheduler (and CriticalAntiDepBreaker) is run.
Post RA top-down list latency scheduler
V...
2010 Apr 20
0
[LLVMdev] Disable the Module Verifier pass?
Zheng Wang wrote:
> Hello,
>
> Is there anyway to disable the module verifier pass (in llvm-ld and llc)?
>
> I got an error as " Instruction does not dominate all uses!".
> Obviously, there must be something wrong. The module verifier simply
> aborts `llvm-ld` instead of generating bytecode. If somehow I can
> disable the module verifier, then I ca...
2009 Apr 18
8
DO NOT REPLY [Bug 6276] New: crtimes.patch does not preserve creation dates on Mac x86_64 only
https://bugzilla.samba.org/show_bug.cgi?id=6276
Summary: crtimes.patch does not preserve creation dates on Mac
x86_64 only
Product: rsync
Version: 3.0.6
Platform: x86
OS/Version: Mac OS X
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
2010 Apr 20
1
[LLVMdev] Disable the Module Verifier pass?
John Criswell wrote:
> Zheng Wang wrote:
>> Hello,
>>
>> Is there anyway to disable the module verifier pass (in llvm-ld and llc)?
>>
>> I got an error as " Instruction does not dominate all uses!".
>> Obviously, there must be something wrong. The module verifier simply
>> aborts `llvm-ld` instead of generating bytecode. If somehow I can
>> disable the module...
2009 May 11
2
Fwd: rsync on OSX for transferring files using FAT32
Hi,
Which version of Mac OS X are you running? If you are on Mac OS 10.5.x
then I can only suggest that you try either formating the drive to HFS
+ or creating a disk image with an HFS+ file system.
If you are running Mac OS 10.4.x then ensure that that ACL support is
enabled on the drive. The following URL contains information on how to
check and enable ACL support :
2006 Jul 09
3
Verify hash key in hash in params hash
Hi,
how can I use Rails ActionController::Verification#verify :params when
the hash key is in a hash?
E.g.: params[:form][:textfield] and I want to verify that :textfield is
a key in params[:form]
Thanks
Markus
2011 Jul 11
2
err: Could not retrieve catalog from remote server: certificate verify failed
...rying to work-out this problem with not
luck. I am working on a Linux Fedora 14. I ssh from the server to the
client using teh IP with no problem.
Client:
# puppetd --server puppet --waitforcert 60 --test --verbose
info: Creating a new SSL key for bar03
warning: peer certificate won''t be verified in this SSL session
warning: peer certificate won''t be verified in this SSL session
info: Creating a new SSL certificate request for bar03
warning: peer certificate won''t be verified in this SSL session
warning: peer certificate won''t be verified in this SSL session
war...