search for: rfa

Displaying 20 results from an estimated 78 matches for "rfa".

Did you mean: ifa
2007 Feb 25
2
RFA and nsRFA
Dear Sir There are two packages of regional frequency analysis RFA and nsRFA. Are both give us same results if not then what you will suggest. I am confused about this. Please guid me in this regard AMINA -- AMINA SHAHZADI Department of Statistics GC University Lahore, Pakistan. Email: amnakhan493@gmail.com amna_989@hotmail.com amna_989@yahoo.com [[alternative...
2007 Feb 25
2
RFA
Dear Sir in the following example,is the vector lmom a l-moment ratios vector? What is meant by size = northCascades[,1]? And what are the values in c(0.0104,0.0399,0.0405)? Please help me I am unable to understand these from help manual. Best Regards AMINA data(northCascades) lmom <- c(1, 0.1103, 0.0279, 0.1366) kappaParam <- kappalmom(lmom) heterogeneity(500, 19, size =
2009 Nov 16
1
No Visible Binding for global variable
...1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base cheat.fit <- function(dat, key, wrongChoice, alpha = .01, rfa = c('nr', 'uni', 'bsct'), bonf = c('yes','no'), con = 1e-12, lower = 0, upper = 50){ bonf <- tolower(bonf) bonf <- match.arg(bonf) rfa <- match.arg(rfa) rfa <- tolower(rfa)...
2008 Nov 25
2
[LLVMdev] RFA: tree-nested.c
I'm getting a crash with some Objective-C code that involves "blocks". Basically, it gets to this "walk_all_functions" call and fails: lower_nested_functions (tree fndecl, bool skip_outermost_fndecl) { ... #ifdef ENABLE_LLVM walk_all_functions (construct_reverse_callgraph, root); propagate_chains (root); #endif ... } The construct_reverse_callgraph calls
2008 Nov 26
0
[LLVMdev] RFA: tree-nested.c
> What are the assumptions going into this "walk_all_functions" call? > Should the code have been placed into some nesting info slot or > something? Hi Bill, should I think about this or is it fixed already? D.
2009 Jan 04
0
[LLVMdev] RFA: TREE_READONLY in LLVM-GCC
On Jan 4, 2009, at 3:44 AM, Bill Wendling wrote: > Hi LLVM-GCC hackers! > > I have a global variable that I want to mark as "TREE_READONLY" so > that it will become a "constant" in LLVM IR. This is for the new > blocks-related stuff, but that's not necessarily important for this > question. In particular, I want to mark the "block_holder"
2009 Jan 05
2
[LLVMdev] RFA: TREE_READONLY in LLVM-GCC
Hi Chris, > I think this change is fine and should go into the normal apple GCC as > well. Setting TREE_READONLY means that it can go into the "constant" > section of the executable, go in ROM, etc. This is the same as the > llvm constant bit on globals. for this I think it has to be static as well as readonly. Ciao, Duncan.
2009 Jan 05
0
[LLVMdev] RFA: TREE_READONLY in LLVM-GCC
I did mark it as TREE_CONSTANT. Is that enough? -bw On Jan 5, 2009, at 2:03 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Chris, > >> I think this change is fine and should go into the normal apple GCC >> as >> well. Setting TREE_READONLY means that it can go into the "constant" >> section of the executable, go in ROM, etc. This is the same
2009 Jan 05
1
[LLVMdev] RFA: TREE_READONLY in LLVM-GCC
On Monday 05 January 2009 12:42:16 Bill Wendling wrote: > I did mark it as TREE_CONSTANT. Is that enough? No idea - if it works I guess it was enough :) I was actually thinking of TREE_STATIC: /* In a VAR_DECL, nonzero means allocate static storage. In a FUNCTION_DECL, nonzero if function has been defined. In a CONSTRUCTOR, nonzero means allocate static storage. ??? This is also
2009 May 08
3
[LLVMdev] RFA: flag_objc_abi on Non-Darwin Platforms?
Is the flag_objc_abi variable available on non-Darwin platforms in llvm-gcc? I want to use it in llvm-backend.cpp to conditionalize a test. But I don't want to break Linux, Ada, Fortran, etc. -bw
2009 May 08
0
[LLVMdev] RFA: flag_objc_abi on Non-Darwin Platforms?
On May 8, 2009, at 1:09 PM, Bill Wendling wrote: > Is the flag_objc_abi variable available on non-Darwin platforms in > llvm-gcc? I want to use it in llvm-backend.cpp to conditionalize a > test. But I don't want to break Linux, Ada, Fortran, etc. If not, you can define it in objc-stubs.c -Chris
2009 Jun 03
1
[LLVMdev] RFA: Alignment of Strings
One of our developers pointed out that GCC generates something akin to this on Darwin: $ cat t.c __private_extern__ void bar(const char *format, ...) __attribute__ ((format (printf, 1, 2))); void foo(const char *i, const char *b) { bar("this is some error message that is kind of longish."); } $ gcc -arch i386 -S -o - t.c -Os .cstring .align 2 LC0: .ascii "this is some
2006 Apr 06
0
upcoming theora streams for April and May
Planned streams coming up from RFA in the next few months: DCLUG: <http://dclug.tux.org> Wednesday, April 19th, 2006, 19:00-21:00 utc-4 Wednesday, May 17th, 2006, 19:00-21:00 utc-4 BWBUG: <http://bwbug.org> Tuesday, April 11th, 2006, 14:00-17:00 utc-4 Tuesday, May 9th, 2006, 14:00-17:00 utc-4 Additionally Linux A...
2007 Aug 30
0
[LLVMdev] RFA: Problem with Exceptions
Duncan, > Hi Bill, is this a 64 bit machine? If so, did you make > any adjustments based on > http://lists.cs.uiuc.edu/pipermail/llvmdev/2007-August/010489.html ? This is 32 bit machine. 64 bit will definitely won't work due to bunch of stuff unimplemented: dwarf builtins, stack layout description, etc. -- With best regards, Anton Korobeynikov. Faculty of Mathematics &
2007 Aug 30
0
[LLVMdev] RFA: Problem with Exceptions
Hi Bill, is this a 64 bit machine? If so, did you make any adjustments based on http://lists.cs.uiuc.edu/pipermail/llvmdev/2007-August/010489.html ? Thanks, Duncan.
2007 Aug 31
0
[LLVMdev] RFA: Problem with Exceptions
Hi Bill, > I'm compiling this trivial program on Darwin: > > int main(int argc, char **argv) { > try { > throw argc; > } catch(int i) { > return i; > } > > return 0; > } > > However, it segfaults when I run it. I've attached the .s files > generated by LLVM and GCC, but it looks as if LLVM isn't generating a >
2007 Sep 03
0
[LLVMdev] RFA: Problem with Exceptions
Duncan, > I see a call to terminate in the llvm assembler. Where did that > come from? I compiled with llvm-gcc-4.0 and llvm-gcc-4.2 and > didn't see such a call. std::terminate() is called by __cxa_throw, if unwinding fails. I think the source of problem was my frame_to_args_offs patch. So, let's wait for retest :) -- With best regards, Anton Korobeynikov. Faculty of
2009 Jan 21
2
[LLVMdev] RFA: Constant String c"\000"
The Constants.cpp file returns a ConstantAggregateZero object when you pass it a c"\000" string. Here is the code: Constant *ConstantArray::get(const ArrayType *Ty, const std::vector<Constant*> &V) { // If this is an all-zero array, return a ConstantAggregateZero object if (!V.empty()) { Constant *C = V[0]; if (!C->isNullValue())
2007 Aug 30
0
[LLVMdev] RFA: Problem with Exceptions
On Aug 30, 2007, at 3:31 PM, Bill Wendling wrote: > Hi all, > > I'm compiling this trivial program on Darwin: > > int main(int argc, char **argv) { > try { > throw argc; > } catch(int i) { > return i; > } > > return 0; > } > > However, it segfaults when I run it. I've attached the .s files > generated by LLVM and GCC, but it
2009 Jan 04
3
[LLVMdev] RFA: TREE_READONLY in LLVM-GCC
Hi LLVM-GCC hackers! I have a global variable that I want to mark as "TREE_READONLY" so that it will become a "constant" in LLVM IR. This is for the new blocks-related stuff, but that's not necessarily important for this question. In particular, I want to mark the "block_holder" created in "build_block_literal_tmp()" as read-only. My question