Displaying 20 results from an estimated 217 matches for "filler".
Did you mean:
filled
2006 Apr 09
0
Form Filler
Hi,
Any idea how to implement form filler and simulate user click on submit
button
Thanks
Sharon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060409/b938274f/attachment.html
2006 Apr 05
7
select_tag - populating options
...ples from Agile Web Development with
Rails, and looks like this:
view:
<%= options = [["Select number of lines", ""]] + RfqLines::LINE_QTY
select("rfq_line", "line_qty", options) %>
model:
LINE_QTY = select_fill
def self.select_fill
@filler = []
1.upto(100) do |count|
@filler << count
end
end
Obviously it is not working, and I''m sure there is some easy way of
doing it..
Many thanks in advance,
/mich
--
Posted via http://www.ruby-forum.com/.
2010 Apr 14
2
[LLVMdev] Delay Slot Filler
Hello,
I am trying to improve lib/Target/Mips/MipsDelaySlotFiller.cpp by
substituting nops emitting with instructions reordering. I need
a hazard recognizer, but I haven't found any. Do I have to create
one, or looking bad and there is any?
Thanks for any reply.
--
Filip Kocina, student FIT
Email: xkocin00 at stud.fit.vutbr.cz
2010 Apr 16
0
[LLVMdev] Delay Slot Filler
Hi Filip,
> I am trying to improve lib/Target/Mips/MipsDelaySlotFiller.cpp by
> substituting nops emitting with instructions reordering. I need
> a hazard recognizer, but I haven't found any. Do I have to create
> one, or looking bad and there is any?
You have to create one! Take a look at PPCHazardRecognizers.cpp
and SPUHazardRecognizers.cpp for example...
2010 Apr 16
1
[LLVMdev] Delay Slot Filler
> You have to create one! Take a look at PPCHazardRecognizers.cpp
> and SPUHazardRecognizers.cpp for examples.
> If you can, contribute it back! :)
There is also generic hazard recognizer which works on top of
instruction itineraries.
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2004 Jun 15
3
anyone use mailboxexists?
I replied to a post of mine a few days ago asking of anyone uses
mailboxexists(). I haven't received any replies.
Perhaps few use it or perhaps the reply was overlooked. I thought I'd
post the question one last time before giving up on it for now...
Thanks!
-Michael
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
Verify generated machine code
Anal...
2009 Aug 02
0
[LLVMdev] Methods for filing delay slots.
...delay slots. I assume it should be possible to do a bit better than this. Is there an existing pass which "fills" delay slots or would I have to write one if I wanted slightly more optimal code? (anyone have any references?)
I don't think there's an existing optimizing delay slot filler. The
LLVM SPARC implementation also has a delay slot filler, but it's
almost identical to the MIPS one.
It's not that difficult to move an instruction; you'll get the idea
pretty quickly looking at MachineBasicBlock.h. Of course, finding an
instruction which can be moved is the trick...
2002 Jun 25
0
SMBFS Problems: smb_proc_readdir_long: name=, result= -2, rcls=1, err=123
On additional note, I was able to use filler directories to circumvent the
problem. This works for me since it is archives, but wouldn't for most.
Here is an example:
No filler files:
ls -l - Returns no files
Filler file at top of the directory structure (00_SAMBA)
ls -l - Returns directories 0-D and N-Z
Filler files the top of direct...
2009 Aug 02
2
[LLVMdev] Methods for filing delay slots.
Hi,
I was looking over the experimental MIPS backend and noticed that it has a delay slot pass which just inserts nops into the delay slots. I assume it should be possible to do a bit better than this. Is there an existing pass which "fills" delay slots or would I have to write one if I wanted slightly more optimal code? (anyone have any references?)
Thanks in advance.
2012 Apr 25
0
[LLVMdev] CriticalAntiDepBreaker rewrites a register operand of a call instruction
...On Wed, Apr 25, 2012 at 11:59 AM, Akira Hatanaka <ahatanak at gmail.com> wrote:
> 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
> Verify...
2002 Oct 29
2
File locking problems - v2.2.6
...*
data division.
file section.
fd f00.
01 f00-test-rec.
03 f00-test-key pic 9(4).
03 f00-test-text pic x(20).
03 f00-test-count pic 9(6).
03 filler pic x(224).
*
*
working-storage section.
77 mod pic 9(6) comp.
*
*
procedure division.
open output f00.
move spaces to f00-test-rec.
move 1 to f00-test-count....
2015 Feb 04
2
[LLVMdev] Handling of KILL instructions.
Hi all,
My understanding is that we keep around KILL instructions in order to keep
the results of the various register liveness analysis passes valid.
Consider for example the following machine basic block:
BB#0: derived from LLVM BB %entry
Live Ins: %A0_64 %A1_64
%V0_64<def> = AND64 %A0_64<kill>, %A1_64<kill>
%V0<def> = KILL %V0,
2009 Aug 25
10
One nic multiple ip''s
I have one nic and 5 static ip''s. i use debian lenny.
How configure dom0 and domU, gets own ip address.
--
View this message in context: http://www.nabble.com/One-nic-multiple-ip%27s-tp25141074p25141074.html
Sent from the Xen - User mailing list archive at Nabble.com.
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2010 Dec 14
0
[LLVMdev] Branch delay slots broken.
On Dec 14, 2010, at 3:46 PM, Richard Pennington wrote:
> Notice that the label $BB0_1 is missing. If I disable filling in the
> branch delay slots, I get:
Is this with the latest SVN HEAD version of LLVM or some other version? The delay slot filler and many other things have been updated for the Microblaze backend. In particular, the commit r120095 for the MBlaze backend fixed some issues with missing block labels due to AsmPrinter::isBlockOnlyReachableByFallthrough not taking into account delay slots in basic blocks.
> My question is, wh...
2010 Feb 01
6
Import fixed-format ascii file with mixed record types
I need to import several ascii files in fixed format with two different record types. The data comes from European Labor Force Surveys, wich is a household survey. The first record type is for people over 16 years, and the second much sorter is for people aged 15 or less (this record has a filler with several blanks to get the same record length).
The files tipically have 160000 records, with 176 characters per record, the data is numeric, corresponding to 102 variables, mostly integers (seven variables have two decimals). My opertating system is Windows XP.
My questions:
1. Wich do you thi...
2012 Aug 16
3
[LLVMdev] MIPS & GP register
...-msoft-float
>>> -EL
>>>
>>> -Xclang -triple -Xclang mipsel-sde-elf
>>> -Xclang -mrelocation-model -Xclang static
>>>
>>> -Xclang -mllvm -Xclang -mips-ssection-threshold=0
>>> -Xclang -mllvm -Xclang -enable-mips-delay-filler
>
> We generally try to discourage people from using -Xclang flags
> wherever possible; they're really implementation details, and
> considered an unstable interface.
>
> For the triple and relocation model, the flags you're looking for are
> "-target mipsel-sde-...
2010 Dec 14
2
[LLVMdev] Branch delay slots broken.
The Sparc, Microblaze, and Mips code generators implement branch delay
slots. They all seem to exhibit the same bug, which is not surprising
since the code is very similar. If I compile code with this snippit:
while (n--)
*s++ = (char) c;
I get this (for the Microblaze):
swi r19, r1, 0
add r3, r0, r0
cmp r3, r3, r7
beqid r3,
2007 Feb 28
4
Help Needed: Can't make "local" calls on a brand new PRI
...f8
-- Zap/23-1 is ringing
If I just send the full 18024967171 to the telco, I get a voice from
the telco saying it is not necessary to dial 1 or the area code when
calling this number.
So the questions: Is there anyway to further verify that asterisk is
not sending any extra digits or filler digits to the telco on the PRI?
If the problem is not in asterisk or zaptel, what do I say to the
Telco to get them to believe the problem is on their end?
We are running:
Asterisk 1.2.6
Zaptel 1.2.14
TE110P Card
Mark Engelhardt
2011 Feb 12
3
accessing a file outside VM
Hi all,
I am using xen on centos 5.5 (host OS).
I have also booted a virtual machine via xen (and the guest os i ve invoked
is also centos ).
Now i want to access a file (a tar file) which is outside the vm (in
physical machine).. Can i use my usb inside the running vm ?? I am unable to
download the file from net..
Please help me by providing some suggestions on how to do this.
Thanks in