search for: coutant

Displaying 20 results from an estimated 49 matches for "coutant".

Did you mean: contant
2005 Mar 11
4
Wireless VoIP
Hi all, I have no experience with wireless VoIP. Do you have some quality wireless phones to suggest ? Thanks in advance. Sylvain COUTANT http://www.adviseo.net/
2018 Sep 20
2
[lldb-dev] [LLD] How to get rid of debug info of sections deleted by garbage collector
> -----Original Message----- > From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of > Davide Italiano via llvm-dev > Sent: Thursday, September 20, 2018 10:55 AM > To: ramana.venkat83 at gmail.com; Cary Coutant > Cc: llvm-dev; LLDB > Subject: Re: [llvm-dev] [lldb-dev] [LLD] How to get rid of debug info of > sections deleted by garbage collector > > On Wed, Sep 19, 2018 at 8:35 PM Venkata Ramanaiah Nalamothu via > lldb-dev <lldb-dev at lists.llvm.org> wrote: > > > > Hi,...
2020 Nov 19
1
[LLD] Support DWARF64, debug_info "sorting"
On 19.11.2020 03:21, Cary Coutant wrote: >>> If the .debug_str section *by itself* exceeds 4GB, then yes any string >>> with a 32-bit reference to it must be in the first 4GB. Strings that >>> have only 64-bit references to them can be sorted to the end of the >>> section, if necessary. I would...
2005 Nov 22
7
Tutorial : Debian, Xen and CLUSTER / GFS Support
Hello there! I made Debian, Xen 2.0 and CLUSTER/GFS work together :). I wrote this little tutorial to help you setup yours. Any feedback is welcome, except comments about W3C validation of my code :p Note that I am talking about compiling CLUSTER with your XEN kernel, I don''t explain how to setup a working cluster. You can find how to setup those in official RedHat docs. You will see,
2018 Sep 20
2
[LLD] How to get rid of debug info of sections deleted by garbage collector
Hi, After compiling an example.cpp file with "-c -ffunction-sections" and linking with "--gc-sections" (used ld.lld), I am still seeing debug info for the sections deleted by garbage collector in the generated executable. Are there any compiler/linker options and/or other tools in LLVM to get rid of the above mentioned unneeded debug info? If such options does not exist,
2006 Apr 25
14
Xen Partition Performance
Hello, I''m setting up a Xen system since I have diferent choices to create the domU''s partitions: raw partition, lvm, files. I''ve done some tests with hdparm and it all seems to be the same. Can anyone, please, share with me what if the best method. Best regards, Luis _______________________________________________ Xen-users mailing list
2018 Sep 21
2
[lldb-dev] [LLD] How to get rid of debug info of sections deleted by garbage collector
...ote: > >> >> > -----Original Message----- >> > From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of >> > Davide Italiano via llvm-dev >> > Sent: Thursday, September 20, 2018 10:55 AM >> > To: ramana.venkat83 at gmail.com; Cary Coutant >> > Cc: llvm-dev; LLDB >> > Subject: Re: [llvm-dev] [lldb-dev] [LLD] How to get rid of debug info of >> > sections deleted by garbage collector >> > >> > On Wed, Sep 19, 2018 at 8:35 PM Venkata Ramanaiah Nalamothu via >> > lldb-dev <lldb-dev...
2012 Apr 05
3
[LLVMdev] Implementing minimal debug info (-g1?) for Clang
...tly Clang "-g" flag emits full debug info, which is fine for debugging, but increases the binary size significantly. It may be useful to produce less debug info, that is still enough for collecting nice stack traces with file names and line numbers, but would introduce less overhead. Cary Coutant made a patch which does this for GCC (it didn't hit trunk yet) - reduces debug info to only descriptions of functions, extern variables, line number tables and inlined subroutine info by setting "-gmlt" ("minimum line table") or "-g1" flags. (See this patch at http...
2018 Jan 08
0
Linker Option support for ELF
> I think we all agree that blindly allowing the linker to honor the options > would be scary. I agree that we should whitelist the options, and am of the > opinion that we should force validation on the linker side (use of any > option which the linker doesn't support in this form can be fatal). > Starting small is the best way, with `-l` and `-L` as a starting point. I >
2018 Jan 08
2
Linker Option support for ELF
On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" <llvm-dev at lists.llvm.org> wrote: > I think we all agree that blindly allowing the linker to honor the options > would be scary. I agree that we should whitelist the options, and am of the > opinion that we should force validation on the linker side (use of any...
2018 Jan 08
2
Linker Option support for ELF
On 8 January 2018 at 08:14, Rui Ueyama <ruiu at google.com> wrote: > On Mon, Jan 8, 2018 at 3:55 AM, Sean Silva via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> >> >> On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" < >> llvm-dev at lists.llvm.org> wrote: >> >> > I think we all agree that blindly allowing the linker to honor the >> options >> > would be scary. I agree that we should whitelist the options, and am >> of the >> > opinion...
2018 Jan 08
0
Linker Option support for ELF
On Mon, Jan 8, 2018 at 3:55 AM, Sean Silva via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > > On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" < > llvm-dev at lists.llvm.org> wrote: > > > I think we all agree that blindly allowing the linker to honor the > options > > would be scary. I agree that we should whitelist the options, and am of > the > > opinion that we should force valida...
2018 Jan 09
3
Linker Option support for ELF
> On Jan 7, 2018, at 5:02 PM, Cary Coutant <ccoutant at gmail.com> wrote: > >> I think we all agree that blindly allowing the linker to honor the options >> would be scary. I agree that we should whitelist the options, and am of the >> opinion that we should force validation on the linker side (use of any >&g...
2012 Apr 09
0
[LLVMdev] Implementing minimal debug info (-g1?) for Clang
..."-g" flag emits full debug info, which is fine for debugging, but increases the binary size significantly. > It may be useful to produce less debug info, that is still enough for collecting nice stack traces with file names and line numbers, > but would introduce less overhead. Cary Coutant made a patch which does this for GCC (it didn't hit trunk yet) - > reduces debug info to only descriptions of functions, extern variables, line number tables and inlined subroutine info > by setting "-gmlt" ("minimum line table") or "-g1" flags. > (See thi...
2018 Jan 08
2
Linker Option support for ELF
...08:14, Rui Ueyama <ruiu at google.com> wrote: > >> > >> On Mon, Jan 8, 2018 at 3:55 AM, Sean Silva via llvm-dev > >> <llvm-dev at lists.llvm.org> wrote: > >>> > >>> > >>> > >>> On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" > >>> <llvm-dev at lists.llvm.org> wrote: > >>> > >>> > I think we all agree that blindly allowing the linker to honor the > >>> > options > >>> > would be scary. I agree that we should whitelist the opti...
2018 Jan 08
0
Linker Option support for ELF
...t; wrote: > On 8 January 2018 at 08:14, Rui Ueyama <ruiu at google.com> wrote: >> >> On Mon, Jan 8, 2018 at 3:55 AM, Sean Silva via llvm-dev >> <llvm-dev at lists.llvm.org> wrote: >>> >>> >>> >>> On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" >>> <llvm-dev at lists.llvm.org> wrote: >>> >>> > I think we all agree that blindly allowing the linker to honor the >>> > options >>> > would be scary. I agree that we should whitelist the options, and am >>>...
2017 Dec 09
2
Reducing code size of Position Independent Executables (PIE) by shrinking the size of dynamic relocations section
> We've taken the '.relr.dyn' section from Cary's prototype, and implemented a > custom encoding to compactly represent the list of offsets. We're calling the > new compressed section '.relrz.dyn' (for relocations-relative-compressed). I'd suggest just using .relr.dyn -- your encoding is straightforward enough that I'd just make that the standard
2018 Jan 09
0
Linker Option support for ELF
...rent source code for each different linker their object is to be consumed by, nor does the compiler have to know about the different possible linkers. James On 9 January 2018 at 05:15, Saleem Abdulrasool <compnerd at compnerd.org> wrote: > > > > On Jan 7, 2018, at 5:02 PM, Cary Coutant <ccoutant at gmail.com> wrote: > > > >> I think we all agree that blindly allowing the linker to honor the > options > >> would be scary. I agree that we should whitelist the options, and am > of the > >> opinion that we should force validation on the l...
2018 Jan 13
0
Linker Option support for ELF
On Fri, Jan 12, 2018 at 5:56 PM, Cary Coutant via llvm-dev < llvm-dev at lists.llvm.org> wrote: > > Given how ELF works I would expect an unknown section to simply end up > > in the output, but we can use SHF_EXCLUDE to avoid that. > > Yes, gold currently treats unknown section types pretty much the same > as PROGBI...
2018 Jan 08
0
Linker Option support for ELF
...at google.com> wrote: >> >> >> >> On Mon, Jan 8, 2018 at 3:55 AM, Sean Silva via llvm-dev >> >> <llvm-dev at lists.llvm.org> wrote: >> >>> >> >>> >> >>> >> >>> On Jan 7, 2018 5:02 PM, "Cary Coutant via llvm-dev" >> >>> <llvm-dev at lists.llvm.org> wrote: >> >>> >> >>> > I think we all agree that blindly allowing the linker to honor the >> >>> > options >> >>> > would be scary. I agree that we shoul...