similar to: [LLVMdev] how to pass message from LLVM IR to bachend code

Displaying 20 results from an estimated 7000 matches similar to: "[LLVMdev] how to pass message from LLVM IR to bachend code"

2005 Jul 11
2
[LLVMdev] how to pass message from LLVM IR to bachend code
Hi: I have extended the IR for adding flag. But I just want this flag to pass through the backend machine code. I know there're several passes like register relocation, schedualing, etc. But I think I just miss the part which is used to "parser" the LLVM IR to machine code instructions. Would you give me some help? Thank you ! > On Sun, 10 Jul 2005 shding at mtu.edu wrote:
2005 Jul 13
2
[LLVMdev] how to pass message from LLVM IR to bachend code
Hi, In the directory of lib/CodeGen/SelectionDAG, I cann't find SelectionDAGISel.cpp. I only have DAGBuilder.cpp and SelectionDAG.cpp. I don't know why. My edtion is 1.4. Is it because of the edtion difference? Thanks! > On Mon, 11 Jul 2005 shding at mtu.edu wrote: >> I have extended the IR for adding flag. But I just want this flag to >> pass through the backend
2005 Jul 11
0
[LLVMdev] how to pass message from LLVM IR to bachend code
On Sun, 10 Jul 2005 shding at mtu.edu wrote: > Hi: > I want to pass some message of instructions from LLVM Internal > representation to backend code. For example, I make a flag for some > certain operands of certain instructions. How can it be passed to the > backend instructions? Which programs I should look into? Would someone > give me some idea? Thank you ! The easiest
2005 Jul 12
0
[LLVMdev] how to pass message from LLVM IR to bachend code
On Mon, 11 Jul 2005 shding at mtu.edu wrote: > I have extended the IR for adding flag. But I just want this flag to > pass through the backend machine code. I know there're several passes > like register relocation, schedualing, etc. But I think I just miss the > part which is used to "parser" the LLVM IR to machine code > instructions. The part of the code
2005 Jun 13
2
[LLVMdev] annotate a value
Hi, I want to annotate values in llvm, like making a flag for the operands and result of an instruction for future use. I wonder if there's any interface to do such a thing? Thanks! -- Shuhan
2005 Sep 05
2
[LLVMdev] a very beginning question
Hi, Where can I find the main function of llvm compiler in the source file? Thanks! -- Shuhan
2005 Sep 09
2
[LLVMdev] bytecode
Hi, I'm changing bytecode format a little bit, i.e. for 2 operands Instructions, the original is like this: 01-00:Opcode type 07-02:Opcode 15-08: Instruction type 23-16: Operand#1 31-24: Operand#2 My change is like this: 01-00:Opcode type 07-02:Opcode 15-08: Instruction type 16: myflag1 17: myflag2 24-18: Operand#1 31-25: Operand#2 I do
2005 May 30
2
[LLVMdev] help!
Hi, I have some problems when I use this command: gcc hello.s -o hello.native(for example) to assembly the native language to a program. I always got a error message like this : "gccas: hello.s:3: parse error, unexpected $undefined. hello.s:3: while reading token: '.' " I don't know what's wrong here. By the way, when I learned llvm at the first time, I followed
2005 May 23
1
[LLVMdev] questions about delete instructions
I'm a new guy for llvm. I'm doing a project in which some instructions should be moved from one block into another. Those instructions may be data-dependent. When I tried to delete them one by one, it cause the error message like, " use stuck around after a def is destroyed" even if I deleted the use befor the def. When I tried to add them to another block, errors occurred like
2005 May 23
2
[LLVMdev] dose anybody have MIPS backend?
As the title. Thank! -- Shuhan
2005 Oct 12
2
[LLVMdev] bytecode version
Hi: For some reason, I changed the files /ByteCode/Writer/Writer.cpp and /ByteCode/Reader/Reader.cpp and I introduced an new version number 6. Now I replaced these two changed files with the original ones that are version 5. And I rebuild the llvm compiler. What make me mad is that the bytecode produced now is still version 6! Of course the reader cannot recognize it because the current reader
2005 Sep 05
1
[LLVMdev] a very beginning question
Thank you. I'm only consider about how the compiler comiles c program to LLVM IR. I know there should be a scanner, parser, and IR generator. But where is the main entrance and how about the flow of the process, especially about the IR generator? > shding at mtu.edu wrote: >> Hi, >> Where can I find the main function of llvm compiler in the source >> file? >>
2005 Jun 14
0
[LLVMdev] annotate a value
Hello, The interface is named Annotation and it allows any Annotable object to be annotated. Note that the Value class is an Annotable. HOWEVER, if the annotation information is something that might be useful to other developers or to other analysis/transformation passes, you're strongly encouraged to create an Analysis instead. See the various analyses in include/llvm/Analysis for examples.
2005 Sep 05
0
[LLVMdev] a very beginning question
shding at mtu.edu wrote: > Hi, > Where can I find the main function of llvm compiler in the source file? > Thanks! Well, there's a loaded question. :) It depends on "which" compiler you mean. If you're talking about the llvm-gcc and llvm-g++ compilers (C/C++ to LLVM) then they are in the downloadable tarballs available here: http://llvm.cs.uiuc.edu/releases/. You
2013 Nov 09
1
[LLVMdev] Variable-length Phi-node
You can call addIncoming(). /// addIncoming - Add an incoming value to the end of the PHI list /// void addIncoming(Value *V, BasicBlock *BB) { assert(V && "PHI node got a null value!"); assert(BB && "PHI node got a null basic block!"); assert(getType() == V->getType() && "All operands to PHI node must be the same
2013 Nov 09
2
[LLVMdev] Variable-length Phi-node
All, Is it possible to create something which has the same effect of a variable-length phi node in the C++ api. Specifically, create a phi-node where the number of incoming values is not known at the time of its creation. If there is no such way of creating a phinode like that, would it be possible to create a dummy instruction and perform a replaceAllUsesWith? If so, what should the dummy
2005 Jul 28
1
[LLVMdev] about Sparcv9 assembly code
Hi: When I tried to use llc -march=sparcv9 to compile some llvm .bc to SparcV9, I got such error: llc: /llvm/lib/Target/SparcV9/SparcV9RegInfo.h:62: virtual void llvm::TargetRegClassInfo::markColorsUsed(unsigned int, int, int, std::vector<bool, std::allocator<bool> >&) const: Assertion `UserRegType == RegTypeWanted && "Default method is probably incorrect for
2005 Oct 17
1
[LLVMdev] about switch and select instructions in SparcV9
Hi: In the file of SparcV9BurgISel.cpp, you said you didn't implement the "Switch" instruction and I also can't find how the "Select" instruction is implemented. So do you do some work to handle these two kind of instructions in other parts? Where can I find it? Thank you! -- Shuhan
2013 Nov 09
0
[LLVMdev] Variable-length Phi-node
On 9 Nov 2013, at 16:35, William Moses <moses.williamsteven at gmail.com> wrote: > Is it possible to create something which has the same effect of a variable-length phi node in the C++ api. Specifically, create a phi-node where the number of incoming values is not known at the time of its creation. The PHI node preallocates its storage, so no. > If there is no such way of creating a
2005 Oct 12
1
[LLVMdev] bytecode version
Which bytecode files? Perhaps the ones in the runtime library? If these were built with Bytecode V6, then the reader (V5) will not read them. Chris Lattner wrote: > On Wed, 12 Oct 2005 shding at mtu.edu wrote: > >> For some reason, I changed the files /ByteCode/Writer/Writer.cpp and >> /ByteCode/Reader/Reader.cpp and I introduced an new version number 6. >> Now I