Skip to main content

Variadic Functions

  • Chapter
  • First Online:
Book cover Beginning x64 Assembly Programming
  • 1598 Accesses

Abstract

A variadic function is a function that takes a variable number of arguments. A good example is printf. Remember, in Linux assembly, when we use printf with xmm registers, the convention is that rax contains the number of xmm registers that printf has to use. This number can also be retrieved from the printf format instruction, so often you can get away without using rax. For example, the following format indicates that we want to print four floating-point values, each with nine decimals:

    fmt     db    "%.f",9,"%.f",9, "%.f",9,"%.f",10,0

This is a preview of subscription content, log in via an institution to check access.

Access this chapter

Chapter
USD 29.95
Price excludes VAT (USA)
  • Available as PDF
  • Read on any device
  • Instant download
  • Own it forever
eBook
USD 34.99
Price excludes VAT (USA)
  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever
Softcover Book
USD 44.99
Price excludes VAT (USA)
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info

Tax calculation will be finalised at checkout

Purchases are for personal use only

Institutional subscriptions

Author information

Authors and Affiliations

Authors

Rights and permissions

Reprints and permissions

Copyright information

© 2019 Jo Van Hoey

About this chapter

Check for updates. Verify currency and authenticity via CrossMark

Cite this chapter

Van Hoey, J. (2019). Variadic Functions. In: Beginning x64 Assembly Programming. Apress, Berkeley, CA. https://doi.org/10.1007/978-1-4842-5076-1_42

Download citation

Publish with us

Policies and ethics