• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rieske / trans
93%
master: 92%

Build:
Build:
LAST BUILD BRANCH: feat/att-backend
DEFAULT BRANCH: master
Repo Added 08 Jan 2015 03:59PM UTC
Files 282
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH feat/att-backend
branch: SELECT
CHANGE BRANCH
x
  • No branch selected
  • build/cmake-idiomatic
  • build/modernize/1
  • ci/coveralls-retry
  • feat/att-backend
  • feat/pie-executables
  • feature/address-base-mode
  • feature/array-decay-multidim
  • feature/array-index-mw
  • feature/callplan-variant
  • feature/do-while
  • feature/file-scope-globals
  • feature/finish-for-git
  • feature/function-pointers
  • feature/goto-labels
  • feature/grammar-block-item-const-exp
  • feature/initializers
  • feature/recursive-type-sizeof
  • feature/result-on-store
  • feature/scanner-c-tokens
  • feature/struct-member-access
  • feature/structs
  • feature/structs-member-access
  • feature/switch-case
  • feature/ternary-conditional-exp
  • feature/type-casts
  • fix/block-scope-shadowing
  • fix/call-stack-alignment-and-variadic-al
  • fix/dereference-lvalue-store-back
  • fix/for-optional-clauses
  • fix/fuzz-signed-div-pointer-arith
  • fix/unary-operand-double-visit
  • fix/void-parameter-list-unary-lvalue-dedup
  • fuzz/backend
  • grammar-cleanup
  • harden/p0-process-exit-ownership
  • master
  • optimize-parser-v1
  • optimize-parser-v2
  • parser-cleanup
  • perf/parser/1-lookahead-model
  • perf/parser/2-automaton
  • perf/parser/3-action-table
  • perf/parser/4-tests-cleanup
  • performance/experimental-parser-generator-optimization
  • phase0/01-recursive-type
  • phase0/02-type-policy
  • phase0/03-object-abi
  • phase0/04-symbols-leaf
  • phase0/05-annotation-migration
  • phase0/06-package-graph
  • phase1/01-integer-type-specs
  • phase1/02-unions
  • phase1/03-forward-decl
  • phase1/04-anonymous-members
  • phase1/05-nested-init
  • phase1/06-designated-init
  • phase2/01-lexical-session
  • phase2/02-lex-id-context
  • phase2/03-parse-environment
  • phase2/04-enums
  • phase2/05-typedef
  • phase2/06-scanner-filters
  • refactor-types
  • refactor/codegen-address-homes
  • refactor/codegen-address-phase1
  • refactor/visit-children-default
  • renovate/actions-checkout-3.x
  • renovate/actions-checkout-4.x
  • renovate/actions-checkout-7.x
  • renovate/actions-checkout-digest
  • renovate/configure
  • renovate/coverallsapp-github-action-1.x
  • renovate/coverallsapp-github-action-2.x
  • test/functional-coverage-gaps
  • test/local-shadows-function-name
  • test/tier-a-c-coverage-gaps
  • tests/fuzz
  • tests/parallel-functional

01 Aug 2026 02:35PM UTC coverage: 93.064% (+0.7%) from 92.398%
30704091318

Pull #99

github

rieske
feat(codegen): full AT&T backend with dual-dialect functional suite

Add -a intel|att to select InstructionSet and assembler (nasm vs gas).
Complete ATandTInstructionSet for PIE (PLT/GOT, lea(%rip), sized loads),
move narrow memory ops onto InstructionSet, and rename string pool labels
to __trans_c* so they are legal in both NASM and gas.

Functional tests run once per backend via TRANS_ASM_DIALECT; ctest names
shards functionalTest_{intel,att}_shardN so failures identify the dialect.
Pull Request #99: feat(codegen): full AT&T backend with dual-dialect functional suite

9097 of 9775 relevant lines covered (93.06%)

405249.8 hits per line

Relevant lines Covered
Build:
Build:
9775 RELEVANT LINES 9097 COVERED LINES
405249.8 HITS PER LINE
Source Files on master
  • Tree
  • List 282
  • Changed 9
  • Source Changed 0
  • Coverage Changed 9
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
30704091318 feat/att-backend feat(codegen): full AT&T backend with dual-dialect functional suite Add -a intel|att to select InstructionSet and assembler (nasm vs gas). Complete ATandTInstructionSet for PIE (PLT/GOT, lea(%rip), sized loads), move narrow memory ops onto Instru... Pull #99 01 Aug 2026 02:40PM UTC rieske github
93.06
30703470184 phase2/06-scanner-filters Merge branch 'master' into phase2/06-scanner-filters Pull #97 01 Aug 2026 02:21PM UTC web-flow github
92.26
30703297192 master Merge pull request #98 from rieske/feat/pie-executables feat(codegen): PIE-safe NASM emission and drop -no-pie push 01 Aug 2026 02:16PM UTC web-flow github
92.4
30702829700 feat/pie-executables fix(driver): pin -pie in link and harden PIE functional checks Pass -pie explicitly so linked type is a compiler property, not the host gcc default. Detect PIE via a Type: DYN readelf line only, so older binutils wording still passes. Pull #98 01 Aug 2026 02:02PM UTC rieske github
92.4
30702409838 feat/pie-executables fix(driver): pin -pie in link and harden PIE functional checks Pass -pie explicitly so linked type is a compiler property, not the host gcc default. Detect PIE via a Type: DYN readelf line only, so older binutils wording still passes. Pull #98 01 Aug 2026 01:50PM UTC rieske github
92.4
30702140378 feat/pie-executables refactor(codegen): align assignLabelAddress with functionAddress bindResult Use lea-into-scratch then bindResult for pool labels so address materialization matches functionAddress (lazy local residence, no eager store or self-mov into an already-... Pull #98 01 Aug 2026 01:42PM UTC rieske github
92.4
30701835304 phase2/06-scanner-filters Merge branch 'master' into phase2/06-scanner-filters Pull #97 01 Aug 2026 01:34PM UTC web-flow github
92.26
30701722540 feature/finish-for-git feat: compile git-shaped C with real frontend and product SysV backend Extend the compiler far enough that host-preprocessed git builds with trans and git's own test suite passes. Real frontend after gcc -E: recursive Type, brace/designated init... Pull #58 01 Aug 2026 01:30PM UTC rieske github
92.7
30701686231 feat/pie-executables feat(codegen): PIE-safe NASM emission and drop -no-pie Link without gcc -no-pie so host-default position-independent executables work. Extern calls use the PLT; same-TU calls stay direct. Pool labels use AssignLabelAddress + lea [rel]; extern fun... Pull #98 01 Aug 2026 01:29PM UTC rieske github
92.39
30693111519 master Merge pull request #96 from rieske/phase2/05-typedef phase2/05: typedef end-to-end with reduce-time registry and shadows push 01 Aug 2026 09:11AM UTC web-flow github
92.4
See All Builds (709)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc