Displaying 15 results from an estimated 15 matches for "typekind".
2012 Sep 13
1
[LLVMdev] Parsing C++ template parameters using cindex.py
...dex.create()
tu = index.parse(None, ['testfile.cpp'])
children = [c for c in tu.cursor.get_children() if c.kind ==
CursorKind.VAR_DECL]
for c in children:
DeepPrint(c)
Dump output:
cursor test_int
location <SourceLocation file 'testfile.cpp', line 11, column 11>
result TypeKind.INVALID
kind CursorKind.VAR_DECL
type
kind TypeKind.UNEXPOSED
xdata 0
data 48356112 1 4106544
children
cursor None
location <SourceLocation file 'testfile.cpp', line 11, column 1>
result TypeKind.INVALID
kind CursorKind.TEMPLATE_REF
type
kind TypeKind.INVALID...
2010 Feb 18
6
[LLVMdev] ocaml survey
...to support?
2. Would it be alright if I renamed some functions? Module providers
are being removed for 2.7. I can keep the old functions around, but
I'd prefer to keep the API clean.
3. Are there any llvm functionality that you need exposed to ocaml?
Right now I plan to expose:
add Union to TypeKind.t
external union_type: llcontext -> lltype array -> lltype
external union_element_types : lltype -> lltype array
external build_indirect_br : llvalue -> int -> llbuilder -> llvalue
external add_destination: llvalue -> llbasicblock -> unit
external build_nsw_add : llvalue...
2011 Nov 14
1
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...aram Inst The instruction accessing the memory.
> --- ./include/polly/TempScopInfo.h 2011-11-13 02:37:59.000000000 +0100
> +++ ../llvm2/tools/polly/./include/polly/TempScopInfo.h 2011-11-13 02:34:47.000000000 +0100
> @@ -45,12 +45,13 @@
> private:
> unsigned ElemBytes;
> TypeKind Type;
> + bool is_affine;
I think IsAffine matches more the LLVM coding conventions.
>
> public:
> explicit IRAccess (TypeKind Type, const Value *BaseAddress,
> - const SCEV *Offset, unsigned elemBytes)
> + const SCEV *Offset, unsig...
2011 Nov 14
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...ry.
>> --- ./include/polly/TempScopInfo.h 2011-11-13 02:37:59.000000000
>> +0100
>> +++ ../llvm2/tools/polly/./include/polly/TempScopInfo.h 2011-11-13
>> 02:34:47.000000000 +0100
>> @@ -45,12 +45,13 @@
>> private:
>> unsigned ElemBytes;
>> TypeKind Type;
>> + bool is_affine;
>
> I think IsAffine matches more the LLVM coding conventions.
>
>>
>> public:
>> explicit IRAccess (TypeKind Type, const Value *BaseAddress,
>> - const SCEV *Offset, unsigned elemBytes)
>> + ...
2011 Nov 02
5
[LLVMdev] How to make Polly ignore some non-affine memory accesses
Mmm I found out a very strange behavior (to me) of the SCEV analysis
of the loop bound of the external loop I posted.
When in ScopDetection it gets the SCEV of the external loop bound in
the "isValidLoop()" function with:
const SCEV *LoopCount = SE->getBackedgeTakenCount(L);
It returns a SCEVCouldNotCompute, but if I change the "if" block
inside the loop from:
if
2010 Feb 18
0
[LLVMdev] ocaml survey
...ld functions around, but
> I'd prefer to keep the API clean.
Fine by me.
> 3. Are there any llvm functionality that you need exposed to ocaml?
Nope. The only feature I'd like is exceptions on the OCaml side from LLVM
errors.
> Right now I plan to expose:
>
> add Union to TypeKind.t
> external union_type: llcontext -> lltype array -> lltype
> external union_element_types : lltype -> lltype array
>
> external build_indirect_br : llvalue -> int -> llbuilder -> llvalue
> external add_destination: llvalue -> llbasicblock -> unit
>
>...
2002 Aug 13
1
Wine 20020804 problems with FCC 6.011
...t.for","C:\\WINDOWS\\QTFont.qfn",(null)): stub
fixme:font:WineEngAddFontResourceEx :stub
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
fixme:ole:ITypeLib2_Constructor_SLTG Not processing typekind 4
fixme:ole:CreateStdDispatch
(0x4140d400,0x4140d3f0,0x40400538,0x405d6a60),stub
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
2008 Mar 04
0
[LLVMdev] [PATCH] Make sure ocamldep runs on all .mli files.
Hi Erick,
Thanks for your patches!
On Mar 4, 2008, at 01:33, Erick Tryzelaar wrote:
> This is a small bug fix for the ocaml build system that allows
> for dependencies to be generated for ocaml interface files.
I've committed the second half of this.
> ---
> bindings/ocaml/Makefile.ocaml | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)diff --git bindings/
2010 Feb 19
0
[LLVMdev] ocaml survey
...ome functions? Module providers
> are being removed for 2.7. I can keep the old functions around, but
> I'd prefer to keep the API clean.
Knock yourself out.
> 3. Are there any llvm functionality that you need exposed to ocaml?
> Right now I plan to expose:
>
> add Union to TypeKind.t
> external union_type: llcontext -> lltype array -> lltype
> external union_element_types : lltype -> lltype array
>
> external build_indirect_br : llvalue -> int -> llbuilder -> llvalue
> external add_destination: llvalue -> llbasicblock -> unit
>
>...
2010 Aug 17
0
[LLVMdev] Ocaml bindings in 2.8
Hello Jianzhou,
On Sat, Aug 14, 2010 at 8:25 PM, Jianzhou Zhao <jianzhou at seas.upenn.edu> wrote:
> Hi,
>
> Does 2.8 release plan to change anything in Ocaml bindings?
> http://llvm.org/docs/ReleaseNotes.html#whatsnew does not list any
> relevant features.
I usually wait until around nowish before a release to sync llvm-c and
the ocaml bindings. I'll start the process.
2008 Mar 04
5
[LLVMdev] [PATCH] Make sure ocamldep runs on all .mli files.
This is a small bug fix for the ocaml build system that allows
for dependencies to be generated for ocaml interface files.
---
bindings/ocaml/Makefile.ocaml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 7c62c2cd93a6402e5f6ebd600e9e3ac7851b4d29.diff
Type: text/x-patch
Size: 994 bytes
Desc: not
2011 Apr 07
1
[LLVMdev] More DWARF problems
On Apr 7, 2011, at 12:14 PM, Talin wrote:
>
> OK I've been checking this out some more, and the DIEs don't look valid to me. Take a look at this output from dwarfdump -v:
>
> 0x000000c7: TAG_subprogram [3]
> 0x000000c8: AT_name( .debug_str[0x000001bd] = "construct" )
> 0x000000cc: AT_MIPS_linkage_name( .debug_str[0x000001c7] =
2010 Aug 15
4
[LLVMdev] Ocaml bindings in 2.8
Hi,
Does 2.8 release plan to change anything in Ocaml bindings?
http://llvm.org/docs/ReleaseNotes.html#whatsnew does not list any
relevant features.
2.7 added 'operand' that can access each operand from a value.
external operand : llvalue -> int -> llvalue = "llvm_operand"
Does this binding also expose a primitive to return how many operands
a given value has?
I need
2010 Mar 19
0
Wine release 1.1.41
...failures on Vista+.
d3d8/tests: Fix timeouts on Win9x/WinMe.
d3d9/tests: Fix timeouts on Win9x/WinMe.
user32/tests: Fix timeouts on Win9x/WinMe.
Piotr Caban (16):
oleaut32: Simplify ICreateTypeInfo2_SetTypeFlags implementation.
oleaut32: Improve TypeInfos with changed TypeKind handling.
oleaut32: Improve dual interfaces creation in typelib.
oleaut32: Added ICreateTypeInfo2_SetFuncHelpContext implementation.
oleaut32: Fix some reference leaks.
oleaut32: Fix importinfo flags.
oleaut32: Remove incorrect memid validation.
oleaut32: Use Que...
2019 Dec 13
0
Wine release 5.0-rc1
...e reference.
Update to Unicode 12.1.
comctl32/listview: Use wcsnicmp() instead of a local helper.
oleaut32/typelib: Get rid of redundant argument in typeinfo lookup helper.
oleaut32/typelib: Simplify variable and function description lookup helpers.
oleaut32/tests: Use TYPEKIND values.
oleaut32/tests: Add some more tests for GetRefTypeInfo() in case of dual interface.
user32/listbox: Scroll to specified caret index.
user32/listbox: Update caret index on LB_SETSEL.
comctl32/listbox: Scroll to specified caret index.
comctl32/listbox: Update car...