start new:
tmux
start new with session name:
tmux new -s myname
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| //===-- stack_deconstructor.cpp - Deconstruct the global stack into local stack | |
| // frame ---===// | |
| // | |
| // The LLVM Compiler Infrastructure | |
| // | |
| // This file is distributed under the University of Illinois Open Source | |
| // License. See LICENSE.TXT for details. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| // |
| //===-- max_stack_height.cpp - Static analysis for stack height approximation --------------------------------------==// | |
| // | |
| // The LLVM Compiler Infrastructure | |
| // | |
| // This file is distributed under the University of Illinois Open Source | |
| // License. See LICENSE.TXT for details. | |
| // | |
| //===----------------------------------------------------------------------===// | |
| // | |
| // This implements a function pass to approximate the max stack height of each function. |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;;;;;popcnt expl ;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| (declare-const V (_ BitVec 64)) | |
| (declare-const I1 (_ BitVec 64)) | |
| (declare-const I2 (_ BitVec 64)) | |
| (assert | |
| (not | |
| (= |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
insert the code in .vimrc
or add more plugins from https://vimawesome.com/
Launch vim and run :source % and :PluginInstall
| import z3 | |
| import sys | |
| def solve(msg, lvar, xvar, s): | |
| global status | |
| s.set("timeout", 60000) | |
| res = s.check() | |
| if(z3.unknown == res): |