search for: rbarri

Displaying 8 results from an estimated 8 matches for "rbarri".

Did you mean: rbarry
2015 Aug 04
2
Re: Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
On Mon, Aug 03, 2015 at 03:39:30PM -0700, Ryan Barry wrote: >On 08/03/2015 01:43 PM, Ryan Barry wrote: >> Using: >> >> edk2.git-0-20150803.b1141.ga0973dc.x86_64 >> edk2.git-ovmf-x64-0-20150802.b1139.gb234418.noarch >> >> On Fedora 22. >> >> Provisioning a i440FX system in virt-manager and attempting to boot >> results in successful EFI
2015 Aug 03
2
Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
Using: edk2.git-0-20150803.b1141.ga0973dc.x86_64 edk2.git-ovmf-x64-0-20150802.b1139.gb234418.noarch On Fedora 22. Provisioning a i440FX system in virt-manager and attempting to boot results in successful EFI initialization, but the VM exits ungracefully after the bootloader (with F22 and CentOS 7 installer images). There's no really useful information in any of the logs. Using qemu-kvm
2015 Aug 06
2
Re: Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
On Tue, Aug 04, 2015 at 07:11:29AM -0700, Ryan Barry wrote: >On 08/03/2015 10:47 PM, Martin Kletzander wrote: >> On Mon, Aug 03, 2015 at 03:39:30PM -0700, Ryan Barry wrote: >>> On 08/03/2015 01:43 PM, Ryan Barry wrote: >>>> Using: >>>> >>>> edk2.git-0-20150803.b1141.ga0973dc.x86_64 >>>>
2015 Aug 04
0
Re: Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
On 08/03/2015 10:47 PM, Martin Kletzander wrote: > On Mon, Aug 03, 2015 at 03:39:30PM -0700, Ryan Barry wrote: >> On 08/03/2015 01:43 PM, Ryan Barry wrote: >>> Using: >>> >>> edk2.git-0-20150803.b1141.ga0973dc.x86_64 >>> edk2.git-ovmf-x64-0-20150802.b1139.gb234418.noarch >>> >>> On Fedora 22. >>> >>> Provisioning
2015 Aug 06
0
Re: Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
On 08/06/2015 08:08 AM, Martin Kletzander wrote: > On Tue, Aug 04, 2015 at 07:11:29AM -0700, Ryan Barry wrote: >> On 08/03/2015 10:47 PM, Martin Kletzander wrote: >>> On Mon, Aug 03, 2015 at 03:39:30PM -0700, Ryan Barry wrote: >>>> On 08/03/2015 01:43 PM, Ryan Barry wrote: >>>>> Using: >>>>> >>>>>
2015 Aug 03
0
Re: Cannot boot libvirt guests with OVMF. Raw qemu-kvm works as expected
On 08/03/2015 01:43 PM, Ryan Barry wrote: > Using: > > edk2.git-0-20150803.b1141.ga0973dc.x86_64 > edk2.git-ovmf-x64-0-20150802.b1139.gb234418.noarch > > On Fedora 22. > > Provisioning a i440FX system in virt-manager and attempting to boot > results in successful EFI initialization, but the VM exits ungracefully > after the bootloader (with F22 and CentOS 7
2008 Jan 14
0
[LLVMdev] llvm-gcc miscompilation or it's the gcc's rule?
I don't think C has a way to express 32b x 32b -> 64b multiply, even though there is (on x86 anyway) a hardware instruction that does it. The type of your expression (x * y) is still uint32_t. The implicit type coercion up to uint64_t as part of the return statement doesn't change this. On Jan 13, 2008, at 10:29 PM, Zhou Sheng wrote: > Hi, > > Here is C function: >
2007 Oct 15
3
[LLVMdev] transitions from C code to LLVM JIT code and back
Started playing with LLVM this week, picking apart the examples to see how they work. So I think I understand the basic process of instantiating a program and getting LLVM to generate the runnable code, and then running it. What I have not seen an example of, and want to know if it's possible, is having LLVM generated code calling back out to plain C code during its run. What