]> gitweb.factorcode.org Git - factor.git/commitdiff
fix some help-lint errors.
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 29 Jul 2015 03:06:59 +0000 (20:06 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 29 Jul 2015 03:06:59 +0000 (20:06 -0700)
basis/compiler/cfg/liveness/liveness-docs.factor
basis/compiler/cfg/ssa/destruction/coalescing/coalescing-docs.factor
basis/compiler/cfg/ssa/interference/interference-docs.factor
basis/math/vectors/simd/intrinsics/intrinsics-docs.factor

index f63897180c8b4e227ee7a6964f7e311d321c32ef..efbb1d5e9e58fb610efe4269b6a3eb77dff378cd 100644 (file)
@@ -19,8 +19,7 @@ HELP: fill-gc-map
 { $description "Assigns values to the " { $slot "gc-roots" } " and " { $slot "derived-roots" } " slots of the " { $link gc-map } ". Does nothing if the " { $link select-representations } " pass hasn't ran." } ;
 
 HELP: gc-roots
-{ $values { "live-set" assoc } { "derived-roots" hash-set } { "gc-roots" sequence } }
-{ $description "" } ;
+{ $values { "live-set" assoc } { "derived-roots" hash-set } { "gc-roots" sequence } } ;
 
 HELP: gen-uses
 { $values { "live-set" assoc } { "insn" insn } }
index 8c53329558b39b81af42c2809b3d7c3c2f3521b9..16d329902a570a58cf5e4c7c4d84f8c3dbc29ea8 100644 (file)
@@ -28,7 +28,7 @@ HELP: coalesce-vregs
 { $description "Sets 'leader' as the leader of 'follower'." } ;
 
 HELP: eliminatable-copy?
-{ $values { "vreg1" "vreg" } { "vreg2" "vreg" } }
+{ $values { "vreg1" "vreg" } { "vreg2" "vreg" } { "?" boolean } }
 { $description "Determines if a vreg copy can be eliminated. It can be eliminated if the vregs have the same register class and same representation size." } ;
 
 HELP: try-eliminate-copy
index 8a536481bd9375765e492415f07875a8ae676378..382596fd8a4d7eb2bb79ce4360d936777ce9750b 100644 (file)
@@ -2,7 +2,7 @@ USING: compiler.cfg help.markup help.syntax sequences ;
 IN: compiler.cfg.ssa.interference
 
 HELP: sets-interfere?
-{ $values { "seq1" sequence } { "seq2" sequence } }
+{ $values { "seq1" sequence } { "seq2" sequence } { "merged/f" object } { "?" boolean } }
 { $description "Checks if two sets consisting of " { $link vreg-info } " instances interfere with each other. If they interfere, then copies can not be eliminated." } ;
 
 HELP: vreg-info
index 820b440f3a96aabac1d7d16ec3f8a52f2a26c1ae..6b957d78ac01d43c8446c1f8b07e9be6e1fd7151 100644 (file)
@@ -2,6 +2,7 @@ USING: help.markup help.syntax sequences ;
 IN: math.vectors.simd.intrinsics
 
 HELP: (simd-select)
+{ $values { "a" object } { "n" object } { "rep" object } { "x" object } }
 { $description "Word which implements " { $link nth } " for SIMD vectors." }
 { $examples
   { $unchecked-example