Skip to content

Instantly share code, notes, and snippets.

--- /tmp/compare-objdump-before.IUVRpU 2022-08-22 14:14:01.128762765 -0400
+++ /tmp/compare-objdump-after.dsqxeW 2022-08-22 14:14:04.784777115 -0400
@@ -11,55 +11,55 @@
CONTENTS, ALLOC, LOAD, READONLY, CODE
3 .init_array 00000000 20000544 20000544 00004084 2**2
CONTENTS, ALLOC, LOAD, DATA
- 4 .text 00001a74 20000544 20000544 00001544 2**2
+ 4 .text 00001ad4 20000560 20000560 00001560 2**5
CONTENTS, ALLOC, LOAD, READONLY, CODE
- 5 .shutdown 00000000 20001fb8 20001fb8 00004084 2**2
--- /tmp/compare-objdump-before.rgd5iJ 2022-08-22 11:59:22.329027570 -0400
+++ /tmp/compare-objdump-after.kjGyFJ 2022-08-22 11:59:36.417078646 -0400
@@ -27,21 +27,21 @@
CONTENTS, READONLY
11 .riscv.attributes 00000026 00000000 00000000 00004188 2**0
CONTENTS, READONLY
- 12 .debug_info 00007f47 00000000 00000000 000041ae 2**0
+ 12 .debug_info 00007f68 00000000 00000000 000041ae 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
- 13 .debug_abbrev 00001e28 00000000 00000000 0000c0f5 2**0
2699497: find library=libasan.so.6 [0]; searching
2699497: search path=/usr/local/google/home/dmcardle/.cache/bazel/_bazel_dmcardle/b5c6bad67a60fe0f0e2dfcf06963df7b/execroot/lowrisc_opentitan/bazel-out/k8-fastbuild/bin/sw/device/lib/base/../../../../_solib_k8/glibc-hwcaps/x86-64-v4:/usr/local/google/home/dmcardle/.cache/bazel/_bazel_dmcardle/b5c6bad67a60fe0f0e2dfcf06963df7b/execroot/lowrisc_opentitan/bazel-out/k8-fastbuild/bin/sw/device/lib/base/../../../../_solib_k8/glibc-hwcaps/x86-64-v3:/usr/local/google/home/dmcardle/.cache/bazel/_bazel_dmcardle/b5c6bad67a60fe0f0e2dfcf06963df7b/execroot/lowrisc_opentitan/bazel-out/k8-fastbuild/bin/sw/device/lib/base/../../../../_solib_k8/glibc-hwcaps/x86-64-v2:/usr/local/google/home/dmcardle/.cache/bazel/_bazel_dmcardle/b5c6bad67a60fe0f0e2dfcf06963df7b/execroot/lowrisc_opentitan/bazel-out/k8-fastbuild/bin/sw/device/lib/base/../../../../_solib_k8/tls/haswell/avx512_1/x86_64:/usr/local/google/home/dmcardle/.cache/bazel/_bazel_dmcardle/b5c6bad67a60fe0f0e2dfcf06963df7b
@dmcardle
dmcardle / homework2_scaffolding.hs
Created June 7, 2015 19:47
CSE305 Homework 2 Scaffolding
data BinaryTree a = Empty
| Node a (BinaryTree a) (BinaryTree a)
deriving (Show, Read, Eq)
--------------------------------------------------------------------------------
-- Define Your Functions Here
--
-- Define each of your answers and helper functions here. The line I have
-- written for each of the functions is not going to be part of your solution.
--------------------------------------------------------------------------------
@dmcardle
dmcardle / haskellproblems.hs
Last active August 29, 2015 14:22
Haskell 99 Problems
{- Haskell 99 Problems
- https://wiki.haskell.org/99_questions/1_to_10
-}
reverse' :: [a] -> [a]
reverse' [] = []
reverse' (x:xs) = (reverse' xs) ++ [x]
myLast :: [a] -> a
@dmcardle
dmcardle / gist:3833ce428aaea897ff39
Created July 22, 2014 04:01
Enhanced white_spacey.py
'''
Created on Apr 19, 2014
@author: Chris
Edited by Dan on Jul 21, 2014
'''
import os
import re
@dmcardle
dmcardle / homework.tex
Created October 15, 2013 01:10
This is a LaTeX template for homeworks.
% LaTeX document template for CIS 275 homework assignments.
% Dan McArdle
% 10-14-2013
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amsthm,amssymb}
\begin{document}