Giter Club home page Giter Club logo

Comments (1)

cmuellner avatar cmuellner commented on August 23, 2024 1

Sorry for the late response here.

Inline assembly is provided by the compiler. At least in case of GCC, the rounding modes are not explicitly set there (with only few exceptions). Therefore, there is no way to change the rounding mode of the instruction that the compiler will emit.

If you know the rounding mode at compile time (like in your example), then there is no need to pass it as constraint.
Just put it into the asm string: asm volatile ("fadd %0, %1, %2, rup" : "=f" (result) : "f" (f1) , "f" (f2));.

If you need a more dynamic approach (where constraints won't help you anyway), you can put if/else-statement (or a switch-statement) around that:

typedef enum {
    rne,
    rtz,
} rm_t;

float foo1(float f1, float f2, rm_t rm)
{
    float result;
    if (rm == rne) {
        asm volatile (
            "fadd %0, %1, %2, rne"
            : "=f" (result)
            : "f" (f1) , "f" (f2));
    } else if (rm == rtz) {
                asm volatile (
            "fadd %0, %1, %2, rtz"
            : "=f" (result)
            : "f" (f1) , "f" (f2));
    }
    return result;
}

However, you can set the rounding mode as part of the inline assembly string and

from riscv-asm-manual.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.