This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module LispParser where | |
import Control.Monad | |
import Text.ParserCombinators.Parsec hiding (spaces) | |
data LispVal = Atom String | |
| List [LispVal] | |
| Vector (Int, [LispVal]) | |
| DottedList [LispVal] LispVal | |
| Number Integer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include<stdlib.h> | |
#include <stdio.h> | |
#include "stdlib.h" | |
#include "string.h" | |
using namespace std; | |
//void set_affinity(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <functional> | |
#ifndef _MSC_VER | |
#define __thiscall | |
#endif | |
namespace vczh { | |
template<typename TResult, typename ...TArgs> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* simple interpreter | |
* @author youxi | |
* @email [email protected] | |
*/ | |
#include <iostream> | |
#include <time.h> | |
#include <stdlib.h> | |
#include "interpreter.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-XX:+UnlockDiagnosticVMOptions -XX:+PrintAssembly | |
-XX:+PrintCompilation | |
-XX:+DebugNonSafepoints | |
-XX:InlineSmallCode=2000 | |
java -server -XX:+UnlockDiagnosticVMOptions -XX:+TraceClassLoading -XX:+PrintAssembly -XX:+LogCompilation -XX:LogFile=live.log | |
java -XXaltjvm=gcih -XX:+UnlockDiagnosticVMOptions -XX:+PrintAssembly test.Main > a.log | |
-XX:-UseInterpreter | |
-XX:+PrintStubCode | |
-XX:+TieredCompilation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp b/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp | |
index 576d338..ae335b4 100644 | |
--- a/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp | |
+++ b/src/cpu/x86/vm/c1_MacroAssembler_x86.cpp | |
@@ -358,6 +358,7 @@ void C1_MacroAssembler::build_frame(int frame_size_in_bytes) { | |
generate_stack_overflow_check(frame_size_in_bytes); | |
push(rbp); | |
+ mov(rbp, rsp); | |
#ifdef TIERED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <linux/module.h> | |
#include <linux/sched.h> | |
#include <linux/kernel.h> | |
#include <linux/wait.h> | |
#include <linux/delay.h> | |
#include <linux/fs.h> | |
#include <asm/uaccess.h> | |
#include <linux/mm.h> | |
#include <linux/pid.h> | |
#include <linux/list.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set fileencodings=ucs-bom,utf-8,chinese,cp936 | |
set guifont=Consolas\ 16 | |
" language messages zh_CN.utf-8 | |
" set guifont=Monospace\ 12 | |
set langmenu=zh_CN.UTF-8 | |
set lines=45 columns=100 | |
set number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim color file | |
" | |
" Author: Tomas Restrepo <[email protected]> | |
" https://github.com/tomasr/molokai | |
" | |
" Note: Based on the Monokai theme for TextMate | |
" by Wimer Hazenberg and its darker variant | |
" by Hamish Stuart Macpherson | |
" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-09-30T03:54:16.120Z","extensionVersion":"v3.4.3"} |
OlderNewer