search for: helptext

Displaying 20 results from an estimated 35 matches for "helptext".

2013 Oct 01
3
[LLVMdev] RFH: passing options from clang down to opt
...clude/clang/Driver/Options.td index a2be903..da932e2 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -351,6 +351,10 @@ def fno_autolink : Flag <["-"], "fno-autolink">, Group<f_Group>, Flags<[DriverOption, CC1Option]>, HelpText<"Disable generation of linker directives for automatic library linking">; +def fauto_profile : Flag<["-"], "fauto-profile">, Group<f_Group>, + Flags<[DriverOption, CC1Option]>, + HelpText<"Enable automatic profile guided optimizat...
2011 Apr 22
1
[LLVMdev] Compile-time evaluation of functions
...w, ProgramArgument is just a regular class that has a constructor that takes several arguments - in this case, the long name, short name, and help text. In fact it looks like this: @Attribute class ProgramArgument { private { let longName:String; let shortName:String; let helpText:String; } def construct(longName:String, shortName:String="", helpText:String="") { self.longName = longName; self.shortName = shortName; self.helpText = helpText; } } OK so when we compile the class CommandArgs, we want to save out the annotati...
2009 Jun 13
1
menu system behaviour with empty config file
...menu system is odd when an empty / not existing config file is specified: the screen is cleared but not even the menu frame is displayed. It seems to be a problem with run_menu() from menumain.c: if (top != prev_top) { draw_menu(entry, top, 1); display_help(me->helptext); } else if (entry != prev_entry) { draw_row(prev_entry - top + 4 + VSHIFT, entry, top, 0, 0); draw_row(entry - top + 4 + VSHIFT, entry, top, 0, 0); display_help(me->helptext); } And we have entry = prev_entry = top = prev_top = -1. - Sebasti...
2011 Apr 21
0
[LLVMdev] Compile-time evaluation of functions
On Apr 20, 2011, at 4:34 PM, Talin wrote: > Also, looking in the SVN repo, it appears that some of the files in include/llvm/ExecutionEngine have not been touched in a long time, and that scares me a bit - what's the current state of the LLVM interpreter? > > Anyway, my main question to the list is - does this sound like a viable plan, or am I heading down the path of madness and
2013 Oct 01
0
[LLVMdev] RFH: passing options from clang down to opt
...index a2be903..da932e2 100644 > --- a/include/clang/Driver/Options.td > +++ b/include/clang/Driver/Options.td > @@ -351,6 +351,10 @@ def fno_autolink : Flag <["-"], "fno-autolink">, > Group<f_Group>, > Flags<[DriverOption, CC1Option]>, > HelpText<"Disable generation of linker directives for automatic > library linking">; > > +def fauto_profile : Flag<["-"], "fauto-profile">, Group<f_Group>, > + Flags<[DriverOption, CC1Option]>, > + HelpText<"Enable automatic...
2011 Apr 20
2
[LLVMdev] Compile-time evaluation of functions
One of the things that my compiler frontend has is an interpreter, which allows fairly elaborate constant expressions to be folded into simple constants. This is particularly useful in the case of annotations that take arguments - rather than executing a static constructor before main(), I allow the constructor to run at compile time (if it can), generating a constant struct with all of it's
2019 Jan 09
6
[llvm-rc] absolute.test failing
...through/some/path/to/my.rc llvm-rc /c/some/path/to/my.rc The option parser ends up interpreting "/" as an option prefix and then the parser matches it to this in tools/llvm-rc/Opts.td: def CODEPAGE : JoinedOrSeparate<[ "/", "-" ], "C">, HelpText<"Set the codepage used for input strings.">; The test then fails with: Exactly one input file should be provided. The same problem happens with files that begin with "/r" (/read/the/path/to/my.rc) "/sl" (/slink/along/the/path/to/my.rc) or any other path that...
2017 Jul 31
3
[RFC] Profile guided section layout
Hi Rafael, On 07/31/2017 04:20 PM, Rafael Avila de Espindola via llvm-dev wrote: > However, do we need to start with instrumentation? The original paper > uses sampling with good results and current intel cpus can record every > branch in a program. > > I would propose starting with just an lld patch that reads the call > graph from a file. The format would be very similar to
2015 Jul 22
2
[LLVMdev] (no subject)
Hello, I have tried a lot fix this error but am not able to can you please find me a solution am trying to compile the SAFECode in Cygwin Environment to work for windows. used make -j4 command to make the files in cygwin i have got this error make[5]: Leaving directory '/home/uidr7475/Work/LLVM_OBJ/projects/safecode/tools/clang/include' /usr/bin/cp: cannot stat
2011 Dec 21
0
Trying to chainload from Syslinux to Grub with a custom config file
...y syslinux menu. A standard entry for this in my syslinux.cfg looks like this: label Name of Image menu label Name of Image KERNEL /directory/grub.exe APPEND --config-file=/directory/menu/nameofimage.lst Then, a standard nameofimage.lst looks like this: default 0 timeout 0 color NORMAL HIGHLIGHT HELPTEXT HEADING foreground=FFFFFF background=000000 title Name of Image find --set-root --ignore-floppies --ignore-cd /directory/ISOS/nameofimage.iso map --heads=0 --sectors-per-track=0 --mem /shrescue/ISOS/nameofimage.iso (hd32) map --hook root (hd32) chainloader (hd32) Am I doing something incorrectly...
2010 May 30
1
[RFC PATCH] menu: support single key booting
...f) } } else if (looking_at(p, "hide")) { ld.menuhide = 1; + } else if (looking_at(p, "commit")) { + ld.menucommit = 1; } else if (looking_at(p, "passwd")) { if (ld.label) { refstr_put(ld.passwd); @@ -931,7 +935,7 @@ do_include: ld.helptext = NULL; ld.ipappend = ipappend; ld.menudefault = ld.menuhide = ld.menuseparator = - ld.menudisabled = ld.menuindent = 0; + ld.menudisabled = ld.menuindent = ld.menucommit = 0; } else if ((ep = is_kernel_type(p, &type))) { if (ld.label) { refstr_put(ld.kernel); -- 1.6.5
2017 Aug 05
1
menu.c32 background problem
On 8/5/17, Ady Ady via Syslinux <syslinux at zytor.com> wrote: > Since you are using only 2 menu entries, would you consider the > possibility of using the msg file(s) and the boot prompt, while > avoiding the use of (vesa)menu.c32 for this particular project? If you > do, there is room for improvements. > > Thanks for the info. Yes, I previously did not have a menu, for
2013 Jul 28
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
...sses to bit-fields in structures, when /// possible. Index: include/clang/Driver/CC1Options.td =================================================================== --- include/clang/Driver/CC1Options.td (revision 187135) +++ include/clang/Driver/CC1Options.td (working copy) @@ -210,6 +210,8 @@ HelpText<"Run the SLP vectorization passes">; def vectorize_slp_aggressive : Flag<["-"], "vectorize-slp-aggressive">, HelpText<"Run the BB vectorization passes">; +def preipo : Flag<["-"], "preipo">, + HelpText<&quot...
2004 Jul 15
4
freenode #asterisk IRC channel identd problem
Sorry to ask this question here since it's related to IRC and not Asterisk, but I am having trouble logging into the #asterisk IRC channel on freenode and was wondering if anyone else has had this problem and solved it. So here's the situation: Whenever I try to login to the #asterisk channel I get a message like "you must be identified to login to this channel." So after doing
2012 Aug 01
2
[LLVMdev] [RFC] New command line parsing/generating framework for clang and lld.
...fault help. bit IsHidden = 0; // Used as a tiebraker when multiple Options share the same prefix. Higher // values are picked first. int Priority = 0; // The single Option that this Option is an alias of. Option Alias = ?; // The help text for this Option. string HelpText = ?; } class Alias<Option alias> { Option Alias = alias; } class MetaVars<list<string> mv> { list<string> ValueMetavars = mv; } class CaseInsensitive { bit IsCaseInsensitive = 1; } Clang.td: include "Option.td" def clang : Tool;...
2014 Jan 21
6
After USB boot problems on Gigabyte GA-M55Plus-S3G
On 01/21/2014 11:13 AM, Thomas Schmitt wrote: > > My current theory is that vendors prefer to record > a cylinder aligned end CHS address over recording > an end CHS address which exploits the whole capacity. > This is used as an (inofficial ?) protocol to publish > the CHS factors H' and S'. > Indeed it is -- at least some BIOSes "deduce" the H/S to use
2013 Jul 18
3
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
Andy and I briefly discussed this the other day, we have not yet got chance to list a detailed pass order for the pre- and post- IPO scalar optimizations. This is wish-list in our mind: pre-IPO: based on the ordering he propose, get rid of the inlining (or just inline tiny func), get rid of all loop xforms... post-IPO: get rid of inlining, or maybe we still need it, only
2017 Jun 15
7
[RFC] Profile guided section layout
...); return make<InputSection>(this, &Sec, Name); diff --git a/ELF/Options.td b/ELF/Options.td index 335c7ad..cea9ee1 100644 --- a/ELF/Options.td +++ b/ELF/Options.td @@ -144,6 +144,9 @@ def nostdlib: F<"nostdlib">, def no_as_needed: F<"no-as-needed">, HelpText<"Always DT_NEEDED for shared libraries">; +def no_cfg_profile_reorder: F<"no-cfg-profile-reorder">, + HelpText<"Disable reordering of sections based on profile information">; + def no_color_diagnostics: F<"no-color-diagnostics">,...
2014 Jan 22
2
Advice/directions to users of Syslinux
Hi, Ady wrote: > I would suggest adding an internal link to respctive sections of the > wiki, not more text in the same page. This is reasonable. Please have a look at http://www.syslinux.org/wiki/index.php/User:Scdbackup The first section shall become the new text of http://www.syslinux.org/wiki/index.php/SYSLINUX#Creating_a_Bootable_Disk The second section shall become a new
2003 Jul 25
16
"shorewall stop"
Although Shorewall provides safeguards against it, people seem to regularly shoot themselves in the foot when doing remote system administration. I''ve been thinking about this problem and wonder if a change to the way that "shorewall stop" behaves might help. Today, "shorewall stop" stops all traffic except to/from those destinations listed in