Displaying 20 results from an estimated 80 matches similar to: "[LLVMdev] RFA: tree-nested.c"
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.
2006 Sep 01
3
[LLVMdev] gfortran: patch, question
On 9/1/06, Chris Lattner <sabre at nondot.org> wrote:
> On Fri, 1 Sep 2006, Michael McCracken wrote:
> > I wanted to know if I should submit patches with comments around them
> > like the "APPLE LOCAL LLVM" ones that mark the LLVM-only changes to
> > the tree. I'd like to make it as easy as possible to apply these, so
> > let me know any rules I
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 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
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 HTML version deleted]]
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 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 =
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
2007 Aug 30
8
[LLVMdev] RFA: Problem with Exceptions
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 looks as if LLVM isn't generating a
gxx_personality_v0 section (like it does for Unwind_Resume, et al). Is
this what's
2006 Sep 05
2
[LLVMdev] gfortran: array constructor problems
Hi, in order to get a handle on the questions in Chris's previous
email, I rebuilt LLVM with debugging info, and then rebuilt gcc4 with
CHECKING_ENABLED.
In the process, I ran into an assertion error when compiling the first
part of libgfortran:
../../src/gcc/llvm-convert.cpp:3871: failed assertion
`(TREE_CONSTANT(exp) || TREE_CODE(exp) == STRING_CST) && "Isn't a