Displaying 4 results from an estimated 4 matches for "use_const_iterator".
2009 Apr 03
0
[LLVMdev] Patch: MSIL backend global pointers initialization
...int only if used
> + {
Likewise. Plus use "if (foo)" instead of "if ( foo )". All code around
uses the first variant.
> + if (F->isVarArg()){
Add space before "{"
> + std::vector<Instruction*> ivec;
> + Value::use_const_iterator e = I->use_end();
> + for(Value::use_const_iterator i = I->use_begin(); i!=e;
> ++i){
Likewise. Also, put space before "("
> + Instruction *instr =
> + const_cast<Instruction*>(dynamic_cast<const
> Instruction*>(*i));
Sou...
2004 Dec 14
0
[LLVMdev] misc. patches
...ing revision 1.66
> diff -u -r1.66 Value.h
> --- include/llvm/Value.h 27 Oct 2004 16:14:47 -0000 1.66
> +++ include/llvm/Value.h 6 Dec 2004 11:24:02 -0000
> @@ -89,8 +89,9 @@
> //
> typedef UseListIteratorWrapper use_iterator;
> typedef UseListConstIteratorWrapper use_const_iterator;
> + typedef iplist<Use>::size_type size_type;
>
> - unsigned use_size() const { return Uses.size(); }
> + size_type use_size() const { return Uses.size(); }
> bool use_empty() const { return Uses.empty(); }
> use_iterator...
2004 Dec 13
6
[LLVMdev] misc. patches
Hi,
here are some minor patches that for various reasons I've not submitted
yet - I'm just trying to clear my list of differences before christmas...
First of all the clear.patch file contains a patch that enables the JIT
to drop all global mappings. I need this because when I have N threads I
compile N different versions of my functions using different memory
areas for global
2009 Apr 03
6
[LLVMdev] Patch: MSIL backend global pointers initialization
Anton Korobeynikov wrote:
> Hi, Artur
>
>
>> I'm working on that backend now, so probably I'll send some more patches
>> soon. I'd be grateful if you could give me some suggestions how to add
>> some test for that backend to the test-suite. On Linux the output code
>> could be run on Mono and compared with outputs for other backends but
>>