Displaying 4 results from an estimated 4 matches for "ixxxxx".
Did you mean:
xxxxx
2011 Sep 09
3
2.1: imapc LIST problem / usage question
...il integration set up by userdb
with
userdb_namespace=gmail userdb_namespace/gmail/list=yes userdb_namespace/gmail/subscriptions=no userdb_namespace/gmail/separator=. userdb_namespace/gmail/prefix=INBOX.gmail. userdb_namespace/gmail/location=imapc: userdb_imapc_host=imap.gmail.com userdb_imapc_user=ixxxxx at gmail.com userdb_imapc_password=xxxxx userdb_imapc_ssl=imaps userdb_imapc_ssl_ca_dir=/etc/ssl/certs userdb_imapc_port=993
(but having the namespace set up in config file makes no difference).
This works in principle. I can e.g.
0 select "INBOX.gmail.[Gmail].Alle Nachrichten"
* FLAGS...
2009 Feb 22
4
[LLVMdev] Creating an LLVM backend for a very small stack machine
...ck machine
before? Was it successfull? What problems did you have?
* What parts of the LLVM backend code generator infrastructure would be
usable for targeting a stack machine? e.g. Is it even possible to use
TableGen to target a stack machine?
* When/where/how do things like big integer (iXXXXX), phi nodes, llvm.*
instrincs get lowered; e.g. does my target have to do that, or is it done
generically?
Ultimtely, I'm wondering if targeting a stack machine with the current LLVM
infrastructure is going to be somewhat straightforward even if it's not
totally optimal (desirable), or...
2009 Feb 23
0
[LLVMdev] Creating an LLVM backend for a very small stack machine
...tMachine::addCommonCodeGenPasses in
lib/CodeGen/LLVMTargetMachine.cpp for a high-level overview of how
CodeGen works. It might also be useful to look at LLVM handles x87
floating-point; the relevant code is in
lib/Target/X86/X86FloatingPoint.cpp.
> * When/where/how do things like big integer (iXXXXX), phi nodes, llvm.*
> instrincs get lowered; e.g. does my target have to do that, or is it done
> generically?
Aribitrary-width integers, vectors, llvm.*, etc. are lowered
generically by the Legalize infrastructure; the backend just has to
say what it can and can't support. See
lib/Targ...
2009 Feb 23
0
[LLVMdev] Creating an LLVM backend for a very small stack machine
...ck machine
before? Was it successfull? What problems did you have?
* What parts of the LLVM backend code generator infrastructure would be
usable for targeting a stack machine? e.g. Is it even possible to use
TableGen to target a stack machine?
* When/where/how do things like big integer (iXXXXX), phi nodes, llvm.*
instrincs get lowered; e.g. does my target have to do that, or is it done
generically?
Ultimtely, I'm wondering if targeting a stack machine with the current LLVM
infrastructure is going to be somewhat straightforward even if it's not
totally optimal (desirable), or...