search for: mnem

Displaying 3 results from an estimated 3 matches for "mnem".

Did you mean: mem
2011 Aug 31
2
reading data from multiple files with multiple headers
.../text on top of it until I encounter a certain text pattern? Here is an example. I just want to read the table after the ~A. ~Version Information ?VERS.????????????? 2.00:???? CWLS log ASCII Standard -VERSION 2.00 ?WRAP.??????????????? NO:???? One line per depth step # # ~Well Information Block #MNEM.UNIT???? Data Type????????????????????? Description #---------???? -----------??????????????????? ---------------- ?STRT.M???????????? 51.000??????????????????? :START DEPTH?? ? ?STOP.M?????????????? .010??????????????????? :STOP DEPTH??? ? ?STEP.M????????????? -.010??????????????????? :STEP???????...
2016 Sep 13
2
what is official way to determine if we are running lto 2nd stage?
Hi, Imagine that your backend has valid asm instruction written like this: "%x mnem %y, %z" And user puts it as inline assembler: __asm__ ("%x mnem %y, %z"); It can not be parsed with current llvm asm parser, because it starts with % (moreover it has mnemonic in second place) Say you written pass, that makes it "mnem %x, %y, %z". Now this guy can be p...
2016 Sep 12
3
what is official way to determine if we are running lto 2nd stage?
Hi, This is really basic block level pass. It is no difference what is level, problem is the same. After fixing for asm parser, assembler syntax is no more valid for backend, without processing with asm parser. May be it will be solution to process inline asm on insn printer level to remove syntax fixes. But just switch it off without lto will make compiler do less job P.S. sorry for dup,