search for: beckham

Displaying 15 results from an estimated 15 matches for "beckham".

2012 Jun 29
2
[LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation
...rate ELF on Windows. I don't know if any progress has been made toward a more generally acceptable solution. -Andy -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Jim Grosbach Sent: Friday, June 29, 2012 9:54 AM To: Verena Beckham Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation Hi Verena, Windows + MachO is likely to run into lots of problems once you start passing in non-trivial code. The relocation model is very tied to Darwin. I believe some folks...
2012 Jul 02
0
[LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation
...w if any progress has been made toward a more generally acceptable solution. > > -Andy > > > -----Original Message----- > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Jim Grosbach > Sent: Friday, June 29, 2012 9:54 AM > To: Verena Beckham > Cc: llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation > > Hi Verena, > > Windows + MachO is likely to run into lots of problems once you start passing in non-trivial code. The relocation model is very tied to Da...
2012 Jun 29
2
[LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation
...llvm.org/bugs/show_bug.cgi?id=8656) would hit this. (Although I haven't tried it) I'm using Windows 32bit x86 Mach-O, with MCJIT. Trying to find a bug within my program and wondered whether the code is just not supported by LLVM. Let me know if you need a testcase. Thanks! -- Verena Beckham Vice President Engineering Codeplay Software Ltd 45 York Place, Edinburgh, EH1 3HP Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and is for use by the addressee only. If you are no...
2012 Jun 29
0
[LLVMdev] Comment "FIXME" in X86MachObjectWriter::RecordX86Relocation
...nto lots of problems once you start passing in non-trivial code. The relocation model is very tied to Darwin. I believe some folks doing JIT on Windows have had some success w/ ELF. Hopefully someone more familiar with the specifics of that will chime in. -Jim On Jun 29, 2012, at 8:58 AM, Verena Beckham <verena at codeplay.com> wrote: > Hi, > > In X86MachObjectWriter::RecordX86Relocation I found the comment > > > if (Target.isAbsolute()) { // constant > // SymbolNum of 0 indicates the absolute section. > // > // FIXME: Currently, these are never g...
2017 Jul 26
2
isSSA computation in MIR parser
...iced a Hexagon test (CodeGen/Hexagon/expand-condsets-rm-reg.mir) has a hack around this by inserting an additional COPY to a register, but that shouldn't be required. It means tests that are generated using llc might be failing because they are wrongly identified as SSA. Thanks, -- Verena Beckham Senior Principal Software Engineer, Compilers Codeplay Software Ltd Level C, Argyle House, 3 Lady Lawson Street, Edinburgh, EH3 9DR Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and...
2018 Aug 09
2
[DWARF] prologue_end fix not working for VLIW
...assumes we want the prologue_end marker just before the first instruction not in the prologue. I couldn't find anything official about the placement in this case in the DWARF spec. Since I am working on a custom target I'm afraid I can't provide any test cases... Thanks, -- Verena Beckham Senior Principal Software Engineer, Compilers Codeplay Software Ltd Level C, Argyle House, 3 Lady Lawson Street, Edinburgh, EH3 9DR Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and...
2012 Jun 27
3
[LLVMdev] Counting instructions in MCJIT
...valent for MCJIT? I can write a MachineFunctionPass to do the same, but I can find no way of inserting that into the PassManager that MCJIT uses. This means I'm replicating the passes and doing code gen twice, basically. Any advice would be much appreciated! Thank you very much, -- Verena Beckham Vice President Engineering Codeplay Software Ltd 45 York Place, Edinburgh, EH1 3HP Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and is for use by the addressee only. If you are no...
2007 Sep 19
5
problem after scaffolding
hi guys, I am having problems after scaffolding I created a db called "requests" and when i tried to execute the command script/generate scaffold request It gave me an error please make sure you have a database request created before you do this The db is obviously created; rails cant access it... so I tried to hack i copied my view model and controller files from my local deployment to
2012 Jul 31
3
[LLVMdev] mcjit
Thu Jul 12 03:42:12 CDT 2012, Verena Beckham verena at codeplay.com : > I would not say it is trivial, having done it myself. > > MCJIT also doesn't support multiple modules, and it does not do JITing > on demand, instead, it does all of it at the same time in the > constructor (unless that is what you call "not lazy&q...
2017 Sep 18
1
Resend: assertion in MachineCopyPropagation::isNopCopy
...econd COPY, with size(src) != size(dst) was generated in InstrEmitter::EmitSubregNode at // Create the extract_subreg machine instruction. So it's not out-of-tree code. Am I missing something or should the assert condition be part of the "if" condition instead? Thanks, -- Verena Beckham Senior Principal Software Engineer, Compilers Codeplay Software Ltd Level C, Argyle House, 3 Lady Lawson Street, Edinburgh, EH3 9DR Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and...
2012 Jul 31
0
[LLVMdev] mcjit
...ction addModule doesn't do anything useful. You need to create a new ExecutionEngine for each module. I'm working with LLVM 3.1, but I don't think much has changed in trunk. Hope this helps, Verena On 31/07/2012 11:16, Paweł Bylica wrote: > Thu Jul 12 03:42:12 CDT 2012, Verena Beckham verena at codeplay.com : >> I would not say it is trivial, having done it myself. >> >> MCJIT also doesn't support multiple modules, and it does not do JITing >> on demand, instead, it does all of it at the same time in the >> constructor (unless that is what you c...
2012 Jun 28
0
[LLVMdev] Counting instructions in MCJIT
...his is same with the result of "-stats" option. I think that we can count the number of instructions per module using Statistic class. Regards, Jin-Gu Kang ________________________________________ From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Verena Beckham [verena at codeplay.com] Sent: Wednesday, June 27, 2012 6:22 PM To: llvmdev at cs.uiuc.edu Subject: [LLVMdev] Counting instructions in MCJIT Hi there, I wondered whether anyone could give me any advice about counting assembly instructions when using MCJIT? For performance regression testing I wou...
2012 Jul 24
1
[LLVMdev] Cannot remove module from empty JIT
Hi, You cannot call removeModule on a JIT with no modules: jitstate will be 0 and therefore we have a null-pointer exception. The function returns a boolean for success/failure, however, so you would expect to be able to call it and get false back. Should we be checking for jitstate != 0 before accessing the variable? - if (jitstate->getModule() == M) { + if (jitstate &&
2013 Jul 22
0
[LLVMdev] Predication bug in AggressiveAntiDepBreaker?
...ead before it. So that read is considered the last use. In my example this leads to a register not being fully renamed everywhere. I don't think a predicated write should count as a define. The attached patch fixes this test case. Or am I missing something target dependent here? -- Verena Beckham Vice President Engineering Codeplay Software Ltd 45 York Place, Edinburgh, EH1 3HP Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and is for use by the addressee only. If you are no...
2018 May 16
0
Bug in TailDuplicator?
...ever, attached a "pseudo mir" which should be easily adaptable for a public target. Maybe this is not a bug, but my function at this stage is not canonical? Also, I am not on tip (though I checked the TailDuplicator tip), so it is possible this is fixed elsewhere. Thanks! -- Verena Beckham Senior Principal Software Engineer, Compilers Codeplay Software Ltd Level C, Argyle House, 3 Lady Lawson Street, Edinburgh, EH3 9DR Tel: 0131 466 0503 Fax: 0131 557 6600 Website: http://www.codeplay.com This email and any attachments may contain confidential and /or privileged information and...