Displaying 9 results from an estimated 9 matches for "int16ty".
Did you mean:
int16_t
2009 Jul 31
2
[LLVMdev] Inserting Instructions (pass)
...::get(Type::VoidTy,
asm_arguments, false);
InlineAsm* au = new InlineAsm(asm_type ???,
"isync","~{dirflag},~{fpsr},~{flags}",true);
//CallInst* ae = new CallInst(au ??);
//Works fine
AllocaInst* ai = new AllocaInst(Type::Int16Ty);
Instruction *pi = bi;
pi->getParent()->getInstList().insert(pi, ai);
}
Test.ll
call void asm sideeffect "isync", "~{dirflag},~{fpsr},~{flags}"() nounwind
llvm::FunctionType
public:
/// FunctionType::get -...
2009 Jul 31
0
[LLVMdev] Inserting Instructions (pass)
...m_arguments, false);
> InlineAsm* au = new InlineAsm(asm_type ???,
> "isync","~{dirflag},~{fpsr},~{flags}",true);
> //CallInst* ae = new CallInst(au ??);
> //Works fine
> AllocaInst* ai = new AllocaInst(Type::Int16Ty);
> Instruction *pi = bi;
> pi->getParent()->getInstList().insert(pi, ai);
> }
>
>
> Test.ll
> call void asm sideeffect "isync", "~{dirflag},~{fpsr},~{flags}"()
> nounwind
>
> llvm::FunctionTyp...
2009 Sep 18
3
[LLVMdev] compiling java frontend
...id decapsulePrimitive(n3::VMObject*, const
llvm::Type*, std::vector<llvm::GenericValue,
std::allocator<llvm::GenericValue> >&)’:
PNetLib.cpp:694: error: ‘Int1Ty’ is not a member of ‘llvm::Type’
PNetLib.cpp:698: error: ‘Int8Ty’ is not a member of ‘llvm::Type’
PNetLib.cpp:702: error: ‘Int16Ty’ is not a member of ‘llvm::Type’
PNetLib.cpp:706: error: ‘Int32Ty’ is not a member of ‘llvm::Type’
There are several other errors on the same form. When inspecting the source
code of llvm::Type I do not see any member variables with those names, but I
see member functions on the form 'getInt1T...
2012 May 04
2
[LLVMdev] Convert a vector size
...tp://llvm.org/docs/LangRef.html%23i_bitcast&usg=AFQjCNFsBtV4Cr8zpL5UpgoIASRDFvcdSw>)
notes
I have understood ,that bitcast of vectors to vectors is OK,only
if provided the vectors are of
the same size.Is it possible to convert a vectors from different size? For
example a vector of 3 elements Int16Ty type to vector having one element of
64 bit Int64Ty ?
Thank you
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120504/557c89f1/attachment.html>
2009 Aug 01
2
[LLVMdev] Inserting Instructions (pass)
...e::get(Type::VoidTy,
asm_arguments, false);
InlineAsm* au = new InlineAsm(asm_type ???,
"isync","~{dirflag},~{fpsr},~{flags}",true);
//CallInst* ae = new CallInst(au ??);
//Works fine
AllocaInst* ai = new AllocaInst(Type::Int16Ty);
Instruction *pi = bi;
pi->getParent()->getInstList().insert(pi, ai);
}
Von: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] Im
Auftrag von Chris Lattner
Gesendet: Freitag, 31. Juli 2009 21:50
An: LLVM Developer...
2009 Sep 18
0
[LLVMdev] compiling java frontend
...MObject*, const
> llvm::Type*, std::vector<llvm::GenericValue,
> std::allocator<llvm::GenericValue> >&)’:
> PNetLib.cpp:694: error: ‘Int1Ty’ is not a member of ‘llvm::Type’
> PNetLib.cpp:698: error: ‘Int8Ty’ is not a member of ‘llvm::Type’
> PNetLib.cpp:702: error: ‘Int16Ty’ is not a member of ‘llvm::Type’
> PNetLib.cpp:706: error: ‘Int32Ty’ is not a member of ‘llvm::Type’
>
> There are several other errors on the same form. When inspecting the
> source code of llvm::Type I do not see any member variables with those
> names, but I see member functions...
2012 May 04
0
[LLVMdev] Convert a vector size
> Is it possible to convert a vectors from different size? For example
> a vector of 3 elements Int16Ty type to vector having one element of
> 64 bit Int64Ty ?
Not with a bitcast. You'd probably use a shuffle followed by a bitcast for that:
%temp = shufflevector <3 x i16> %incoming, <3 x i16> undef, <4 x i32>
<i32 0, i32 1, i32 2, i32 undef>
%out = bitcast <4 x i16...
2009 Sep 17
0
[LLVMdev] compiling java frontend
On Sep 17, 2009, at 4:17 PM, Andreas Saebjoernsen wrote:
> I am trying to compile the Java frontend in
> https:/llvm.org/svn/llvm-project/java/trunk
> If there are another preferred Java frontend available, and it is
> suited for translating Java bytecode to LLVM bytecode, I'd be happy
> to use that frontend instead.
That is really old and out of date, I'm sure it
2009 Sep 17
2
[LLVMdev] compiling java frontend
I am trying to compile the Java frontend in https:/
llvm.org/svn/llvm-project/java/trunk
If there are another preferred Java frontend available, and it is suited for
translating Java bytecode to LLVM bytecode, I'd be happy to use that
frontend instead.
thanks,
Andreas
On Thu, Sep 17, 2009 at 4:03 PM, Chris Lattner <clattner at apple.com> wrote:
>
> On Sep 17, 2009, at 3:59