similar to: [lld] section attributes lld can use to safely drop a section from obj files

Displaying 20 results from an estimated 200 matches similar to: "[lld] section attributes lld can use to safely drop a section from obj files"

2020 Jun 22
4
Inlining functions from multiple assembly files
I am working on developing a method to do some analysis on Ada code. I have converted the high level code (multiple Ada files) to the corresponding LLVM IR (.s files) using the tool dragonegg. The structure of my code is such that there are function calls across these files. Is there any way to inline these function calls? That is if function A in A.s calls function B in B.s, can the code for
2014 Oct 01
2
[LLVMdev] Compiling As Obj-C or Obj-C++ On Windows
I have some C++ source files that mix in small bits of Obj-C. On the Mac, these files are marked to be compiled as Obj-C++. Looking at the clang help, it seems that the option for that is "-ObjC++". However, when I add that in Additional Options I get an error message: CL> : error : invalid integral value 'bjC++' in '-ObjC++' I see this same message if I put
2006 Jul 11
2
extending an active record model with obj.extend(Module)
Hi everyone, I am trying to extend an active record model using obj.extend(module). The aim is to overwrite some of the model methods depending on what''s in the object. For example, the base class would be "file", with objects such as "image", and "text". The aim is to be able to something like this: file = File.new() file.extend(Image) file.process
2006 Mar 13
1
has_many.collection<<obj doesn''t set attributes?
I tried: @item.stuff<<thing and in thing I have: def stuff_id=(value) # remember old stuff_id cuz Rails has lousy trigger equivalent logger.debug ''set stuff_id called'' end And apparently stuff_id doesn''t get called, but the fk is changed directly in the database? I''m about to abandon trying to do trigger related stuff in Rails and go back to
2006 Mar 28
1
Newbie question: Dynamic view creation from obj.to_html_form
Hi. I would like to be able to generate a form dynamically from an object''s to_html_form method, submit it, and then place marshalled object into a database row. Since I do not know exactly all the input fields in advance, I figure this would allow me to dynamically create the input form, stuff the user input into object, marshal the object into the database, and display it later
2008 May 07
1
Is programming Wxwidgets in Obj C possible?
Hi Was wondering if you could possibly program wxwidgets in Objective C? Thanks Chris
2002 Nov 08
1
extracting response from arima obj
dear all, Is it possible to extract the response vector from a fitted arima object? For instance in glm it is allowed, by: obj.glm<-glm(y~x) obj.glm$y #the response vector In arima I can't find it: obj.arima<-arima(y, order=c(1,0,1)) #say names(obj.arima) doesn't seem to include the response. Am I wrong? Many thanks for your help, best, vito
2010 Jul 13
0
Modify the plotting parameters for Vennerable obj.
Dear List, I would like to modify the settings for plotting a Vennerable object, but I don't know how...so if anyone has an idea I would be really graetfull. best, Fabian some R code to illustrate my problem: #### library(Vennerable) ven <- compute.Venn(Venn(SetNames=c("A", "B"), Weight=c(0,111,106, 26))) # now my problem is that whenever I plot the object, the
1997 Jul 15
0
R-beta: dimnames(obj)[..] <- .... works in S but not in R
The following is a minor incompatibility R <-> S which may be worth putting on the TASKS list : -- Martin Maechler ###--- The following code only works in S, but not in R : ##-- Example 1 : dimnames(..)[.] <- list(...) ## === ma <- cbind(1,1:4) dimnames(ma)[2] <- list(c("x","y")) ma ##- x y ##- [1,] 1 1 ##- [2,] 1 2
2007 Jun 30
0
[idea] wavefront obj+mtl viewing inside cube plugin
Hi everyone, With the introduction of Dennis' paintInside function, I can imagine many end users wanting to display things inside of the cube--corporate logo, distro logo, miniature city, etc. For static objects, we should easily be able to load one at runtime, rather than developing a separate plugin for each, allowing us to do what we do best (programming) and the artists to do what they
2007 Jul 14
0
[LLVMdev] compiling clang with a obj/ dir
On Sat, 14 Jul 2007, Holger Schurig wrote: > I can compile LLVM using with this method: > > svn co ... > cd llvm > ./configure ... > make > > or with that one: > > svn co ... > mkdir obj > cd obj > ../llvm/configure ... > make > > > How does the second method work with the new, experimental C > compiler, "clang" ? The doc said that
2007 Jul 15
0
[LLVMdev] compiling clang with a obj/ dir
Holger Schurig wrote: > compiler, "clang" ? The doc said that you put the clang sourcecode > into llvm/tools/clang, change into this directory and simply > enter "make". This seems to be not possible with the second method, at > least not in a way that separates sources and binaries. I also did not succeed building clang in obj-dir. Only after "mv
2010 Jun 10
0
[LLVMdev] [cfe-dev] clang dependence on gcc for assembler even with -filetype=obj
> Could you send me a patch for this ? I have tried to do similarly but cannot > get it to work. > I am working on a COFF linker for LLVM. > > Aaron http://codereview.appspot.com/1638043/show (ignore test/CMakeLists.txt) How are you planning on doing the linker? This is probably something that should be done like LLVMMC. In fact they should probably share Elf/MachO/COFF code.
2011 Dec 22
0
[LLVMdev] Proposal for -filetype=obj full big endian support
On 19/12/11 08:17 PM, Carter, Jack wrote: > Proposal for ELF text and data big endian support for direct object generation Looks like the basic support is already there. If I remember correctly, what we have lets us produce a hello world on a big endian freebsd powerpc. > Cheers, > > Jack Cheers, Rafael
2011 Dec 23
0
[LLVMdev] Proposal for -filetype=obj full big endian support
Well, not so flawlessly. Yes, I get hello world working, but the current place to fix up the instructions (EncodeInstruction) is too early and misses the final expression fixups. I also continue to struggle in the lib/Target/<local target>/MCTargetDesc area to get clean, easy and elegant access to the environment such as chip/instruction variants let alone endianess. Finally, I still
2013 Jan 08
1
[LLVMdev] Examples of creating Obj-C objects?
Hi. Does anyone have examples of LLVM assembler to create Objective-C objects and send messages? I'm talking about having an Engine hosted within my Objective-C app, and having LLVM bitcode call back into the app. Thanks! -- Rick
2013 Apr 13
1
[LLVMdev] Q: clang, obj-c: Hashing selectors to SEL's.
I'm trying to understand the method dispatch in objc_MsgSend. At some point during compilation, ascii selectors are hashed into integer SEL's. Is this hash somehow guaranteed to be unique? If so, how? If not, how are collisions handled? Is this hashing done during the link phase? Any insights/pointers to the code/documentation related to this hashing would be greatly appreciated.
2013 Apr 23
2
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
On Tue, Apr 23, 2013 at 10:29:32AM +0400, Anton Korobeynikov wrote: > Hello > > There is not support for big endian ARM at all. I guess he need to change the data layout string in ARMTargetMachine::ARMTargetMachine (ARMTargetMachine.cpp) from "e" to "E" to get big endian output? Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information
2013 Apr 23
0
[LLVMdev] Is the llvm ARM support big endian elf/obj output?
> I guess he need to change the data layout string in > ARMTargetMachine::ARMTargetMachine (ARMTargetMachine.cpp) > from "e" to "E" to get big endian output? That would be a start, but I'd expect a significant number of bugs where the backend writers have assumed ARM was little-endian (lib/Target/Mips, which *does* support both, has many more endian checks in the
2013 Jul 19
0
[LLVMdev] [llvm 3.1] About the symbol count constraint in one obj file
Hi, When using LLVM 3.1 to generate bitcode (then to obj file) on Windows, if there are a lot of symbols in one function (lots of local vars), then many of them are missing from the obj file. It seems that there is a symbol count constraint. Is there such a constraint? If so, what is the max number? And is there any change in LLVM 3.3? Thanks. Regards, Bryan This email was sent to you by