खोज…


वाक्य - विन्यास

  • #! [सुविधा (asm)] // asm सक्षम करें! मैक्रो फीचर गेट
  • असम!

अस्म्म! मैक्रो

इनलाइन असेंबली को केवल रास्ट के रात के संस्करणों में समर्थित किया जाएगा जब तक कि इसे स्थिर नहीं किया जाता है। asm! का उपयोग सक्षम करने के लिए asm! मैक्रो, मुख्य फ़ाइल के शीर्ष पर ( फ़ीचर गेट ) निम्नलिखित फ़ीचर विशेषता का उपयोग करें:

 #![feature(asm)]

फिर asm! उपयोग करें asm! किसी भी unsafe ब्लॉक में मैक्रो:

fn do_nothing() {
    unsafe {
        asm!("NOP");
    }

    // asm!("NOP"); 
    // That would be invalid here, because we are no longer in an 
    // unsafe block.
}

सशर्त रूप से इनलाइन असेंबली को संकलित करें

यह सुनिश्चित करने के लिए सशर्त संकलन का उपयोग करें कि कोड केवल इच्छित अनुदेश सेट (जैसे x86 ) के लिए संकलित हो। अन्यथा प्रोग्राम अवैध हो सकता है यदि प्रोग्राम को किसी अन्य आर्किटेक्चर, जैसे एआरएम प्रोसेसर के लिए संकलित किया जाता है।

#![feature(asm)]

// Any valid x86 code is valid for x86_64 as well. Be careful
// not to write x86_64 only code while including x86 in the 
// compilation targets!
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
fn do_nothing() {
    unsafe {
        asm!("NOP");
    }
}

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64"))]
fn do_nothing() {
    // This is an alternative implementation that doesn't use any asm!
    // calls. Therefore, it should be safe to use as a fallback.
}

इनपुट और आउटपुट

#![feature(asm)]
    
#[cfg(any(target_arch="x86", target_arch="x86_64"))]
fn subtract(first: i32, second: i32) {
   unsafe {
        // Output values must either be unassigned (let result;) or mutable.
        let result: i32;
        // Each value that you pass in will be in a certain register, which
        // can be accessed with $0, $1, $2...
        //
        // The registers are assigned from left to right, so $0 is the 
        // register containing 'result', $1 is the register containing 
        // 'first' and $2 is the register containing 'second'.
        //
        // Rust uses AT&T syntax by default, so the format is:
        // SUB source, destination
        // which is equivalent to:
        // destination -= source;
        //
        // Because we want to subtract the first from the second, 
        // we use the 0 constraint on 'first' to use the same
        // register as the output.
        // Therefore, we're doing:
        // SUB second, first
        // and getting the value of 'first'
        
        asm!("SUB $2, $0" : "=r"(result) : "0"(first), "r"(second));
        println!("{}", result);
    }
}

एलएलवीएम के बाधा कोड यहां पाए जा सकते हैं , लेकिन यह आपके rustc कंपाइलर द्वारा उपयोग किए जाने वाले rustc के संस्करण के आधार पर भिन्न हो सकता है।



Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow