Coder Social home page Coder Social logo

cil-palindrome's Introduction

Directives

  • .entrypoint — defines the application entry point (the function called by .NET Runtime when the program starts).
  • .maxstack — defines the maximum stack depth used by the function code. The C# compiler sets always the exact value for each function. In the sample project, I set this value to 8.

Commands

  • ldstr string — loads the string constant onto the stack.
  • call function(parameters) — calls the static function. Parameters for the function should be loaded onto the stack before this call
  • callvirt <method> - call a method associated with an object.
  • stloc name - pop a value from stack into local variable.
  • ldloc name - load local variable onto stack.
  • pop — pops a value from the stack. Used when we don't need to store a value in the variable.
  • ret — returns from a function.
  • ldarg name - load argument onto the stack.
  • ldlen - push the length of array on the stack.
  • conv.i4 - convert to int32, pushing int32 on stack.
  • ldelem type - Load the element with type at index onto the top of the stack as an type.

cil-palindrome's People

Contributors

shmatov avatar

Watchers

 avatar  avatar

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.