search for: lopt

Displaying 20 results from an estimated 24 matches for "lopt".

Did you mean: lopo
2010 Jan 05
1
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
...ile =================================================================== --- TEST.libcalls.Makefile (revision 92512) +++ TEST.libcalls.Makefile (working copy) @@ -21,12 +21,11 @@ @cat $< $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \ -Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) \ +Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) $(VERB) $(RM) -f $@ @echo "---------------------------------------------------------------" >> $@ @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ @echo "--------------------...
2010 Jan 05
2
[LLVMdev] libcalls test fails to run
This is what I get while trying to run 'make TEST=libcalls' in the top dir of test-suite: make[1]: Entering directory `/home/gregory/thesis/llvm/projects/test-suite/SingleSource' make[2]: Entering directory `/home/gregory/thesis/llvm/projects/test-suite/SingleSource/UnitTests' make[3]: Entering directory
2010 Jan 05
0
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
...======================================== > --- TEST.libcalls.Makefile (revision 92512) > +++ TEST.libcalls.Makefile (working copy) > @@ -21,12 +21,11 @@ > @cat $< > > $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \ > -Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) \ > +Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) > $(VERB) $(RM) -f $@ > @echo > "---------------------------------------------------------------" >> > $@ > @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ &gt...
2010 Jan 05
2
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
....libcalls.Makefile =================================================================== --- TEST.libcalls.Makefile (revision 92749) +++ TEST.libcalls.Makefile (working copy) @@ -23,10 +23,10 @@ $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \ Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) \ $(PROJ_SRC_ROOT)/TEST.libcalls.Makefile + $(VERB) $(RM) -f $@ @echo "---------------------------------------------------------------" >> $@ @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ @echo "-----------------------------------...
2010 Jan 05
0
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
...=============================================================== > --- TEST.libcalls.Makefile (revision 92749) > +++ TEST.libcalls.Makefile (working copy) > @@ -23,10 +23,10 @@ > $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \ > Output/%.$(TEST).report.txt: Output/%.linked.rbc $(LOPT) \ > $(PROJ_SRC_ROOT)/TEST.libcalls.Makefile > + $(VERB) $(RM) -f $@ > @echo > "---------------------------------------------------------------" >> > $@ > @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ > @echo >...
2014 Jun 23
4
[PATCH] utils/isohybrid.c: 007 (2nd try) Enable promised options -u, -m, -b
...hort_opts_umb 2014-06-23 19:52:59.000000000 +0200 @@ -262,7 +262,7 @@ check_option(int argc, char *argv[]) char *err = NULL; int n = 0, ind = 0; - const char optstr[] = ":h:s:e:o:t:i:fcp?vV"; + const char optstr[] = ":h:s:e:o:t:i:b:umfcp?vV"; struct option lopt[] = \ { { "entry", required_argument, NULL, 'e' },
2009 Dec 13
0
[LLVMdev] Problem running 2.6 test-suite on cygwin
> LLVM tools and LLVM-GCC I've built seem to work. > Can it be due to LLVM_SRC_ROOT == LLVM_OBJ_ROOT? No. This is usually due to absence of llvm-gcc. You need reconfigure llvm once again with lvm-gcc path added and make sure it was hooked properly (look into Makefile.config for paths, etc). -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg
2010 Jan 05
1
[LLVMdev] [PATCH] test-suite/libcalls: unbreak build
...o "---------------------------------------------------------------" >> $@ @echo ">>> ========= '$(RELDIR)/$*' Program" >> $@ @echo "---------------------------------------------------------------" >> $@ - $(VERB) $(RM) -f $@ @-$(LOPT) -simplify-libcalls -stats -debug-only=simplify-libcalls \ -time-passes -disable-output $< 2>>$@ summary:
2009 Dec 13
3
[LLVMdev] Problem running 2.6 test-suite on cygwin
...o build this (from Makefile.programs): # Given an unoptimized bytecode file that is a simple linkage of all # the program's bytecode files, optimize the program using the # standard compilation optimizations. $(PROGRAMS_TO_TEST:%=Output/%.linked.bc): \ Output/%.linked.bc: Output/%.linked.rbc $(LOPT) $(VERB) $(RM) -f $(CURDIR)/$@.info -$(LOPT) -std-compile-opts -info-output-file=$(CURDIR)/$@.info $(STATS) $(EXTRA_LOPT_OPTIONS) $< -o $@ -f But for some strange reason it can't find this rule (from Makefile.singlesrc): Output/%.linked.rbc: Output/%.bc -cp -f $<...
2009 Dec 12
4
[LLVMdev] Problem running 2.6 test-suite on cygwin
After following all steps from http://llvm.org/docs/TestingGuide.html#testsuiterun, I've got this: make[1]: Entering directory `/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource' make[2]: Entering directory `/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource/UnitTests' make[3]: Entering directory
2016 May 26
2
RFC: LNT/Test-suite support for custom metrics and test parameterization
I understood your modules and I see as them can be used in LNT. But there are some question about old features. 1. With Makefiles we can write pass and collect some statistics. There was an example of branch pass. Metrics can be collected by @-$(LOPT) -load dcc888$(SHLIBEXT) -branch-counter -stats \ -time-passes -disable-output $< 2>>$@ in makefile. In report file we write how data should be parsed. Can we do same things now with cmake+lit? 2. As I saw in LNT code there is no opportunity to compile but not execute tests. Some m...
2016 May 26
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
...lists.llvm.org> wrote: > > I understood your modules and I see as them can be used in LNT. But there are some question about old features. > 1. With Makefiles we can write pass and collect some statistics. There was an example of branch pass. Metrics can be collected by > @-$(LOPT) -load dcc888$(SHLIBEXT) -branch-counter -stats \ -time-passes -disable-output $< 2>>$@ > in makefile. In report file we write how data should be parsed. Can we do same things now with cmake+lit? This question hits several points at once: - Collecting metrics at compiletime: The Makefi...
2010 Oct 25
7
[PATCH 0/6] Ocfs2-tools: Add a new tool 'o2info'.
Now it's a good time to introduce the new tool 'o2info' since kernel part of OCFS2_IOC_INFO ioctl has been pulld upstream by linus. The following 6 patches have already got sunil's SOBs, and now they're trying to attract more reviewers before it goes to central repo with a modification of getting manual pages being introduced.
2014 Jun 22
0
[PATCH] utils/isohybrid.c: 007 Enable promised options -u, -m, -b
...rt_opts_umb 2014-06-22 22:14:03.000000000 +0200 @@ -262,7 +262,7 @@ check_option(int argc, char *argv[]) char *err = NULL; int n = 0, ind = 0; - const char optstr[] = ":h:s:e:o:t:i:fcp?vV"; + const char optstr[] = ":h:s:e:o:t:i:u:m:b:fcp?vV"; struct option lopt[] = \ { { "entry", required_argument, NULL, 'e' },
2014 Jun 24
0
[PATCH] utils/isohybrid.c: 007 (3rd try) Enable promised options -u, -m, -b
...s/isohybrid.c 2014-06-23 19:52:59.000000000 +0200 @@ -262,7 +262,7 @@ check_option(int argc, char *argv[]) char *err = NULL; int n = 0, ind = 0; - const char optstr[] = ":h:s:e:o:t:i:fcp?vV"; + const char optstr[] = ":h:s:e:o:t:i:b:umfcp?vV"; struct option lopt[] = \ { { "entry", required_argument, NULL, 'e' },
2017 Oct 03
2
New Pass Manager with flto[=thin] not enabled (??)
...g the new pass manager"), cl::init(false), cl::Hidden); ... Conf.UseNewPM = UseNewPM; ... projects/clang/lib/CodeGen/BackendUtil.cpp ... void clang::EmitBackendOutput( (...) { ... runThinLTOBackend(CombinedIndex.get(), M, HeaderOpts, CGOpts, TOpts, LOpts, std::move(OS), CGOpts.SampleProfileFile, Action); return; ... } static void runThinLTOBackend (...) { ... Conf.UseNewPM = CGOpts.ExperimentalNewPassManager; ... } My team and I were wondering if this is: intentional, if so, why do we not have an option to enable the new PM i...
2006 Sep 06
7
[RFC PATCH] allow connecting to xenconsole from remote hosts
...t = fileno(stdout); + + ret = console_loop(conspty, in, out, 0); + + restore_term(in, &attr); + + return ret; +} + int main(int argc, char **argv) { - struct termios attr; int domid; - char *sopt = "h"; + char *sopt = "rp:gndh"; int ch; int opt_ind=0; struct option lopt[] = { + { "remote", 0, NULL, ''r'' }, + { "port", 1, NULL, ''p'' }, + { "gateway", 0, NULL, ''g'' }, + { "noecho", 0, NULL, ''n'' }, + { "debug", 0, NULL, ''d'...
2014 Jun 22
16
Announcing a patch series for isohybrid.c
Hi, following will be 6 patch proposals for isohybrid.c 1: Encode GPT partition names as UTF-16LE 2: Correct blocking factor in APM partition block counts 3: Correct end block address of first GPT partition 4: Write GPT backup to the very end of the image 5: Change all fseek(3) to fseeko(3) 6: Introduce option --mbr and make isohybrid.c compilable standalone If the form needs adjustments,
2016 May 25
0
RFC: LNT/Test-suite support for custom metrics and test parameterization
> On May 25, 2016, at 1:54 AM, Elena Lepilkina via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi Matthias, > > Thank you for your answer. > But can you answer for some more questions? > First of all, now LNT uses make-style of running tests and parse results from result csv file. Are there any plans to go to cmake? As James already said "lnt runtest
2016 Aug 04
4
help please: how to sort the contents of a "SymbolTableListTraits<GlobalVariable>"?
...I assume you can reproduce this in a unit test? Well, it doesn`t take a long program-under-compilation to make this fail. As before, I will paste something in after my sign-off. Regards, Abe ----- added near the end of "OptimizeGlobalVars" in "llvm/lib/Transforms/IPO/GlobalOpt.cpp", amongst many other things I added to that routine ----- struct GV_alignment_comparator { bool operator()(const GlobalVariable& L, const GlobalVariable& R) { return L.getAlignment() < R.getAlignment(); } }; if (unsorted) { M.getGlobalList().sort( GV_alignme...