From 90b31d543b357cc34ddc2f9e517d2585384fa1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Sat, 15 Nov 2014 07:56:56 +0100 Subject: [PATCH] compiler.cfg.instructions: more docs --- .../cfg/instructions/instructions-docs.factor | 68 +++++++++++++++++-- .../cfg/instructions/instructions.factor | 3 - 2 files changed, 61 insertions(+), 10 deletions(-) diff --git a/basis/compiler/cfg/instructions/instructions-docs.factor b/basis/compiler/cfg/instructions/instructions-docs.factor index aae34632d4..fa045f0a82 100644 --- a/basis/compiler/cfg/instructions/instructions-docs.factor +++ b/basis/compiler/cfg/instructions/instructions-docs.factor @@ -1,5 +1,5 @@ -USING: arrays classes compiler.cfg cpu.architecture help.markup help.syntax -kernel layouts slots.private ; +USING: arrays classes compiler.cfg compiler.codegen.gc-maps cpu.architecture +help.markup help.syntax kernel layouts sequences slots.private ; IN: compiler.cfg.instructions HELP: new-insn @@ -71,6 +71,9 @@ HELP: ##alien-invoke } } ; +HELP: alien-call-insn +{ $class-description "Union class of all alien call instructions." } ; + HELP: ##call { $class-description "An instruction for calling a Factor word." @@ -175,7 +178,15 @@ HELP: ##spill { $class-description "Instruction that copies a value from a register to a " { $link spill-slot } "." } ; HELP: gc-map-insn -{ $class-description "Union class of all instructions that contain subroutine calls to functions which allocate memory." } ; +{ $class-description "Union class of all instructions that contain subroutine calls to functions which allocate memory. Each of the has a " { $slot "gc-map" } " slot." } ; + +HELP: gc-map +{ $class-description "A tuple that holds info necessary for a gc cycle to figure out where the gc root pointers are. It has the following slots:" + { $table + { { $slot "gc-roots" } { "A " { $link sequence } " of " { $link spill-slot } " which will be traced in a gc cycle. " } } + } +} +{ $see-also emit-gc-info-bitmaps } ; ARTICLE: "compiler.cfg.instructions" "Basic block instructions" "The " { $vocab-link "compiler.cfg.instructions" } " vocab contains all instruction classes used for generating CFG:s (Call Flow Graphs)." @@ -189,18 +200,50 @@ $nl ##replace-imm ##spill } -"Garbage collection words and instruction classes:" +"Control flow:" { $subsections - gc-map-insn + ##call + ##jump + ##no-tco + ##phi + ##return } -"Alien calls:" +"Comparison instructions:" { $subsections + ##compare + ##compare-imm + ##compare-integer + ##compare-integer-branch + ##compare-integer-imm-branch + ##test + ##test-branch + ##test-imm + ##test-imm-branch +} +"Alien calls and FFI:" +{ $subsections + ##alien-assembly + ##alien-indirect ##alien-invoke + ##box + ##box-alien + ##box-displaced-alien + ##box-long-long + ##callback-inputs + ##callback-outputs + ##local-allot + ##unbox + ##unbox-long-long alien-call-insn } -"Allocation:" +"Allocation and garbage collection:" { $subsections ##allot + ##call-gc + ##check-nursery-branch + gc-map + gc-map-insn + } "Constant loading:" { $subsections @@ -215,12 +258,16 @@ $nl ##and-imm ##mul ##mul-imm + ##neg + ##not ##or ##or-imm ##sar ##sar-imm ##shl ##shl-imm + ##shr + ##shr-imm ##sub ##sub-imm ##xor @@ -232,4 +279,11 @@ $nl ##slot-imm ##set-slot ##set-slot-imm +} +"Stack height manipulation:" +{ $subsections + ##inc-d + ##inc-r } ; + +ABOUT: "compiler.cfg.instructions" diff --git a/basis/compiler/cfg/instructions/instructions.factor b/basis/compiler/cfg/instructions/instructions.factor index f039ae4893..2f0ddd7706 100644 --- a/basis/compiler/cfg/instructions/instructions.factor +++ b/basis/compiler/cfg/instructions/instructions.factor @@ -844,8 +844,6 @@ UNION: alien-call-insn UNION: factor-call-insn alien-call-insn ; -! Instructions that contain subroutine calls to functions which -! allocate memory UNION: gc-map-insn ##call-gc ##box @@ -854,7 +852,6 @@ factor-call-insn ; M: gc-map-insn clone call-next-method [ clone ] change-gc-map ; -! Each one has a gc-map slot TUPLE: gc-map scrub-d check-d scrub-r check-r gc-roots derived-roots ; : ( -- gc-map ) gc-map new ;