fix some help-lint errors.

db4
John Benediktsson 2015-07-28 20:06:59 -07:00
parent 823524c3a0
commit 4ded3c491c
4 changed files with 4 additions and 4 deletions

View 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." } ; { $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 HELP: gc-roots
{ $values { "live-set" assoc } { "derived-roots" hash-set } { "gc-roots" sequence } } { $values { "live-set" assoc } { "derived-roots" hash-set } { "gc-roots" sequence } } ;
{ $description "" } ;
HELP: gen-uses HELP: gen-uses
{ $values { "live-set" assoc } { "insn" insn } } { $values { "live-set" assoc } { "insn" insn } }

View File

@ -28,7 +28,7 @@ HELP: coalesce-vregs
{ $description "Sets 'leader' as the leader of 'follower'." } ; { $description "Sets 'leader' as the leader of 'follower'." } ;
HELP: eliminatable-copy? 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." } ; { $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 HELP: try-eliminate-copy

View File

@ -2,7 +2,7 @@ USING: compiler.cfg help.markup help.syntax sequences ;
IN: compiler.cfg.ssa.interference IN: compiler.cfg.ssa.interference
HELP: sets-interfere? 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." } ; { $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 HELP: vreg-info

View File

@ -2,6 +2,7 @@ USING: help.markup help.syntax sequences ;
IN: math.vectors.simd.intrinsics IN: math.vectors.simd.intrinsics
HELP: (simd-select) HELP: (simd-select)
{ $values { "a" object } { "n" object } { "rep" object } { "x" object } }
{ $description "Word which implements " { $link nth } " for SIMD vectors." } { $description "Word which implements " { $link nth } " for SIMD vectors." }
{ $examples { $examples
{ $unchecked-example { $unchecked-example