search for: noverify

Displaying 16 results from an estimated 16 matches for "noverify".

Did you mean: no_verify
2020 Apr 15
3
Backend emitting to string instead of file
...string (via buffer_ostream) the resulting string has always zero length. Here the code changes I do: Original llc:       if (Target->addPassesToEmitFile(PM, *OS,                                       DwoOut ? &DwoOut->os() : nullptr,                                       FileType, NoVerify, MMIWP)) Now, with this tiny change I was hoping to write to a string instead of the output stream defined by the command line parameters: std::string outStr; raw_string_ostream stream(outStr); buffer_ostream pstream(stream); if (Target->addPassesToEmitFile(PM, pstream,                     ...
2010 Mar 22
1
[PATCH] ESX: Enable verification of SSL certificates
...nsfer/ESX.pm index 1da382a..66ba515 100644 --- a/lib/Sys/VirtV2V/Transfer/ESX.pm +++ b/lib/Sys/VirtV2V/Transfer/ESX.pm @@ -53,7 +53,7 @@ our %handles; sub new { my $class = shift; - my ($server, $username, $password, $pool, $verify) = @_; + my ($server, $username, $password, $target, $noverify) = @_; my $self = $class->SUPER::new( agent => 'virt-v2v/'.$Sys::VirtV2V::VERSION, @@ -65,7 +65,7 @@ sub new { my ($response, $self, $h) = @_; if ($response->is_success) { - $self->verify_certificate($response) if ($verify); +...
2013 Jan 07
0
[LLVMdev] How to output a .S *and* a .OBJ file?
...PM; PM.add(new TargetData(module)); // Override default to generate verbose assembly. Target.setAsmVerbosityDefault(true); { formatted_raw_ostream FOS_S(Out_S->os()); formatted_raw_ostream FOS_OBJ(Out_OBJ->os()); // Ask the target to add backend passes as necessary. bool NoVerify = true; if (Target.addPassesToEmitFile(PM, FOS_S, FileType_S, NoVerify)) { printf( "target does not support generation of this file type!\n"); return false; } if (Target.addPassesToEmitFile(PM, FOS_OBJ, FileType_OBJ, NoVerify)) { printf( "target does not support...
2010 Apr 22
2
[PATCH 1/2] Try to load the loop module before running mkinitrd
mkinitrd needs to mount files using loop. loop might be a module, so try to load it first. --- lib/Sys/VirtV2V/GuestOS/RedHat.pm | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/lib/Sys/VirtV2V/GuestOS/RedHat.pm b/lib/Sys/VirtV2V/GuestOS/RedHat.pm index 0e469f5..08027b6 100644 --- a/lib/Sys/VirtV2V/GuestOS/RedHat.pm +++ b/lib/Sys/VirtV2V/GuestOS/RedHat.pm @@ -1114,6
2017 Aug 31
2
tsan_interface_java.h; any users? reviving https://github.com/google/java-thread-sanitizer?
...tizer v1. Has anybody ever > tried to make it work with the current ThreadSanitizer? > > I gave it a try and bending java-thread-sanitizer to my needs seems doable so far: 1) making java-thread-sanitizer compile with Gradle and run its example under Java 8, check (although I have to pass -noverify to JVM) 2) LD_PRELOADing libtsan.so to JVM, accessing it from JNA, check 3) reproducing one tsan test (tests/rtl/tsan_mop.cc) with Java threads and made up pointers passed to __tsan_write*(), check 3) disabling Garbage Collection in JVM (just to possibly simplify things) cannot be done, but it shou...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...n->get_info()->{state}), - name => $self->{name}))) - unless ($domain->get_info()->{state} == - Sys::Virt::Domain::STATE_SHUTOFF); -} + if ($uri->scheme eq "esx") { + my %query = $uri->query_form; + my $noverify = $query{no_verify} eq "1" ? 1 : 0; -sub _state_string -{ - my ($state) = @_; - - if ($state == Sys::Virt::Domain::STATE_NOSTATE) { - return __"idle"; - } elsif ($state == Sys::Virt::Domain::STATE_RUNNING) { - return __"running"; - } elsif (...
2012 Feb 20
1
[LLVMdev] ARM opcode format
...": warning: ignoring -mc-relax-all because filetype != obj"; // else // Target.setMCRelaxAll(true); //} //{ // formatted_raw_ostream FOS(Out->os()); // Ask the target to add backend passes as necessary. // if (Target.addPassesToEmitFile(PM, FOS, FileType, OLvl, NoVerify)) { // errs() << argv[0] << ": target does not support generation of this" // << " file type!\n"; // return 1; // } // Before executing passes, print the final values of the LLVM options. // cl::PrintOptionValues(); // PM.ru...
2017 Aug 30
2
tsan_interface_java.h; any users? reviving https://github.com/google/java-thread-sanitizer?
Hello, I've been looking at ThreadSanitizer in https://github.com/llvm-mirror/compiler-rt and I noticed some Java-related files. Is there a version of ThreadSanitizer build on top of that, which I could use to sanitize my Java programs? I could not find any. I found https://github.com/google/java-thread-sanitizer, which seems to be now abandoned. It used to work with ThreadSanitizer v1. Has
2006 May 17
0
[LLVMdev] Obfuscation with LLVM
...vm; static cl::opt< std::string > InputFilename( cl::Positional, cl::desc( "<input .bc file>" ), cl::Required ); static cl::opt< std::string > OutputFilename( cl::Positional, cl::desc( "<output .bc file>" ), cl::Required ); static cl::opt< bool > NoVerify( "disable-verify", cl::desc( "Do not verify result module" ), cl::Optional ); int main( int argc, char* argv[] ) { std::string programName = argv[ 0 ] = "obfuscator"; try { cl::ParseCommandLineOptions( argc, argv ); std::string errorMessag...
2012 Feb 20
0
[LLVMdev] ARM opcode format
Guillermo, > I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The > actual error, I get when I'm trying to get the function to the pointer. I'm > using a custom front end that translates Android's Dalvik bytecode into LLVM > bitcode based on Android ICS's modified LLVM version. ARM JIT is broken in many ways. So, what you're seeing is
2017 Aug 31
2
tsan_interface_java.h; any users? reviving https://github.com/google/java-thread-sanitizer?
...e it work with the current ThreadSanitizer? > > I gave it a try and bending java-thread-sanitizer to my needs seems > doable > > so far: > > > > 1) making java-thread-sanitizer compile with Gradle and run its example > > under Java 8, check (although I have to pass -noverify to JVM) > > 2) LD_PRELOADing libtsan.so to JVM, accessing it from JNA, check > > 3) reproducing one tsan test (tests/rtl/tsan_mop.cc) with Java threads > and > > made up pointers passed to __tsan_write*(), check > > 3) disabling Garbage Collection in JVM (just to possibly...
2012 Feb 20
3
[LLVMdev] ARM opcode format
Hi, I'm sorry I forgot to mention I am compiling the bitcode using the JIT. The actual error, I get when I'm trying to get the function to the pointer. I'm using a custom front end that translates Android's Dalvik bytecode into LLVM bitcode based on Android ICS's modified LLVM version. Thanks, On Mon, Feb 20, 2012 at 7:55 PM, James Molloy <James.Molloy at arm.com>
2007 Jul 05
2
[LLVMdev] PATCH (rest of code changes) "bytecode" --> "bitcode"
Here is the bulk of the sanitizing. My residual doubts center around the question whether we still do/want to support (un)compressed *byte*code in 2.0/2.1. I need a definitive word on this to proceed. My understanding is that bytecode is already gone, but there are still some functions/enums that really deal with *byte*code (instead of *bit*code). I did not touch those areas, so the attached
2010 Jan 29
4
[FOR REVIEW ONLY] ESX work in progress
The following patches are where I'm currently at with ESX support. I can now import a domain from ESX along with its storage. Note that I'm not yet doing any conversion. In fact, I've never even tested past the import stage (I just had an exit in there). The meat is really in the 4th patch. The rename of MetadataReader->Connection was because the Connection is now really providing
2010 Feb 01
9
[ESX support] Working ESX conversion for RHEL 5
With this patchset I have successfully[1] imported a RHEL 5 guest directly from ESX with the following command line: virt-v2v -ic 'esx://yellow.marston/?no_verify=1' -op transfer RHEL5-64 Login details are stored in ~/.netrc Note that this is the only guest I've tested against. I haven't for example, checked that I haven't broken Xen imports. Matt [1] With the exception of
2010 Mar 30
3
[PATCH 1/2] Refactor guest and volume creation into Sys::VirtV2V::Target::LibVirt
...ame}, $username, $password, - $pool, + $target, $noverify); return $ua->get_volume($path); diff --git a/po/POTFILES.in b/po/POTFILES.in index 3874426..ffdf250 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -7,6 +7,7 @@ ../lib/Sys/VirtV2V/GuestOS.pm ../lib/Sys/VirtV2V/GuestOS/RedHat.pm ../lib/Sys/VirtV2V.pm +../lib/Sys/VirtV2V/Target/LibV...