search for: intvalue

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

2015 Feb 16
2
[LLVMdev] LLVM Backend
I am working on LLVM backend and was wondering if there is any way by which I can access the value stored SDValue so I can either assign it as a literal or move it to register in an user defined instruction. Something like: SDValue Value = Op->getOperand(2); intValue = Value.get_integer_value //get Value as an int and then if ( intValue > 31) Thanks, Ambuj -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150216/9a72caa2/attachment.html>
2018 Feb 28
0
LLVM map to specific data model?
...like this :     age > 18 && result.speed > 15 Here is my data model, it is generic data model and a data schema that describe the 'form' of the data. Here are some pseudo-code :     struct Data     {       vector<double> doubleValues;       vector<double> intValues;       vector<double> stringValues;       vector<Data>   children;     };     enum class DataPropertyType     {       DPT_DOUBLE,       DPT_INT,       DPT_TEXT,       DPT_CHILDREN,     };     struct DataProperty     {       DataPropertyType type;       string name;   ...
2010 May 03
1
Help decompressing Speex audio
I have an audio file compressed by JSpeex that I'm trying to decompress on the iPhone. I've been trying to work from the speexdec example in an attempt to port the core logic to ObjC. I have a class that does the decode and passes the result back to another class. (currently the other class is a unit test.) My other class is writing the converted output to disk. I compare the results of my
2013 Jul 19
2
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...nterException > > from ConstantSet.java:84:in `getEnumClass' > > from ConstantSet.java:60:in `getConstantSet' > > from ConstantResolver.java:181:in `getConstants' > > from ConstantResolver.java:102:in `getConstant' > > from ConstantResolver.java:146:in `intValue' > > from OpenFlags.java:28:in `value' > > from RubyFile.java:254:in `createFileClass' > > from Ruby.java:1273:in `initCore' > > from Ruby.java:1101:in `bootstrap' > > from Ruby.java:1079:in `init' > > from Ruby.java:179:in `newInstance...
2013 Jul 19
2
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...tSet.java:84:in `getEnumClass' >> >> from ConstantSet.java:60:in `getConstantSet' >> >> from ConstantResolver.java:181:in `getConstants' >> >> from ConstantResolver.java:102:in `getConstant' >> >> from ConstantResolver.java:146:in `intValue' >> >> from OpenFlags.java:28:in `value' >> >> from RubyFile.java:254:in `createFileClass' >> >> from Ruby.java:1273:in `initCore' >> >> from Ruby.java:1101:in `bootstrap' >> >> from Ruby.java:1079:in `init' &g...
2013 Jul 19
0
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...stantSet.java:84:in `getEnumClass' > > from ConstantSet.java:60:in `getConstantSet' > > from ConstantResolver.java:181:in `getConstants' > > from ConstantResolver.java:102:in `getConstant' > > from ConstantResolver.java:146:in `intValue' > > from OpenFlags.java:28:in `value' > > from RubyFile.java:254:in `createFileClass' > > from Ruby.java:1273:in `initCore' > > from Ruby.java:1101:in `bootstrap' > > from Ruby.java:1079:in `init' > &g...
2013 Jul 22
2
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...9; >>> >>> from ConstantSet.java:60:in `getConstantSet' >>> >>> from ConstantResolver.java:181:in `getConstants' >>> >>> from ConstantResolver.java:102:in `getConstant' >>> >>> from ConstantResolver.java:146:in `intValue' >>> >>> from OpenFlags.java:28:in `value' >>> >>> from RubyFile.java:254:in `createFileClass' >>> >>> from Ruby.java:1273:in `initCore' >>> >>> from Ruby.java:1101:in `bootstrap' >>> >>&g...
2013 Jul 22
0
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...>> from ConstantSet.java:60:in `getConstantSet' >> >> from ConstantResolver.java:181:in `getConstants' >> >> from ConstantResolver.java:102:in `getConstant' >> >> from ConstantResolver.java:146:in `intValue' >> >> from OpenFlags.java:28:in `value' >> >> from RubyFile.java:254:in `createFileClass' >> >> from Ruby.java:1273:in `initCore' >> >> from Ruby.java:1101:in `bootstrap' >> &g...
2013 Jul 22
0
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
...> from ConstantSet.java:60:in `getConstantSet' >>>> >>>> from ConstantResolver.java:181:in `getConstants' >>>> >>>> from ConstantResolver.java:102:in `getConstant' >>>> >>>> from ConstantResolver.java:146:in `intValue' >>>> >>>> from OpenFlags.java:28:in `value' >>>> >>>> from RubyFile.java:254:in `createFileClass' >>>> >>>> from Ruby.java:1273:in `initCore' >>>> >>>> from Ruby.java:1101:in `bootst...
2013 Jul 19
0
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
Hi Kumar, There is an error on your configuration line, you should provide the path to llvm-config binary instead of configure file. Assuming that you compiled llvm in release mode, the llvm-config binary is located in : YOUR_PATH_TO_LLVM/Release+Asserts/bin/llvm-config Try to change the -with-llvm-config-path option and it will compile. Harris Bakiras On 07/19/2013 02:36 PM, Kumar
2013 Jul 19
2
[LLVMdev] Compiling "vmkit" on Ubuntu_x64 - Error: missing argument to --bindir
To compile vmkit on Ubuntu 12.04 64-bit machine, I followed the steps giving here <http://vmkit.llvm.org/get_started.html>[1]. but when I run ./configure I am getting following error- root at komal:/home/komal/Desktop/GSOC/vmkit/vmkit# ./configure >> -with-llvm-config-path=../llvm-3.3.src/configure >> --with-gnu-classpath-glibj=/usr/local/classpath/share/classpath/glibj.zip
2012 Jan 09
1
[PATCH 1/2] generator: Rename java_structs to camel_structs to better reflect their purpose
This map was originally included just for the java bindings, but is generally useful to any binding which uses camel case by requirement or convention. --- generator/generator_haskell.ml | 4 ++-- generator/generator_java.ml | 10 +++++----- generator/generator_main.ml | 2 +- generator/generator_structs.ml | 12 +++++------- generator/generator_structs.mli | 8 ++++---- 5
2009 Apr 27
5
ruby jasper report
Hi, I am trying to create a pdf using ruby jasper. For this I am referring this url:- http://oldwiki.rubyonrails.org/rails/pages/howtointegratejasperreports I have done everything whatever is in that link. Still I am not able to get the pdf. I am not getting any error in log file. My log file is:- "Processing AccountController#customer_report (for 127.0.0.1 at 2009-04-27 13:19:34) [GET]
2006 Feb 07
15
So, this search thing...
I am using ferret right now, and it works great for all my regular text documents/information. My problem arises when I want to index/search all of our assets (mostly pdf files). Currently, there is no way to READ pdfs from Ruby. Because of this I have to resort to using Java to read the PDF''s and then Lucene to index them. My problem here is a couple things. One, to index a asset I have
2012 Aug 14
7
[PATCH 0/7] Add tar compress, numericowner, excludes flags.
https://bugzilla.redhat.com/show_bug.cgi?id=847880 https://bugzilla.redhat.com/show_bug.cgi?id=847881 This patch series adds various optional arguments to the tar-in and tar-out commands. Firstly (1/7) an optional "compress" flag is added to select compression. This makes the calls tgz-in/tgz-out/txz-in/txz-out deprecated, and expands the range of compression types available.
2006 Feb 20
46
Ruby + Apache Lucene using XMLRPC?
Please excuse me if this has been answered before. Is there a "how-to" guide or a walkthrough on integrating Lucene with ROR via XMLRPC? I got Ferret to work but I am worried that it''s not going to be as scalable. I highly appreciate your assistance. Thanks Frank --------------------------------- Relax. Yahoo! Mail virus