Careers 2.0 by Stack Overflow
Gravatar
profile updated
on Dec 6, 2011

Jay Conrod

San Diego, CA, United States

www.jayconrod.com

Top 10% Stack Overflow for
Top 20% Stack Overflow for
Top 30% Stack Overflow for
Currently Software Engineer at Qualcomm Innovation Center (Qualcomm open source subsidiary).

I'm an embedded software engineer with a keen interest in maximizing performance for mobile operating systems and applications. The computing industry is in the middle of a second renaissance with smartphones leading the way, and I want to be a part of it. Speed, memory, and power usage are critical to success for these systems, and I want to contribute to that success by developing software that maximizes performance. My primary passion is in compiler development, and I'm also interested in GPGPU computing and high performance graphics.

Technologies

Experience (3)

Software Engineer

Qualcomm Innovation Center (Qualcomm open source subsidiary)

June 2011 - Current

I currently work on Qualcomm's Webtech-VM team, a small group of engineers who optimize virtual machines used by web browsers for Qualcomm ARM architectures. I work specifically on V8 JavaScript VM, which is used in the Android web browser. Optimizations I've added or improved range from high level transformations in the optimizing compiler to low level ARM instruction scheduling to garbage collection and cache tuning.

Software Engineer

Qualcomm

May 2010 - June 2011

At Qualcomm, I've worked both in integration and performance engineering for BrewMP, an operating system for feature phones.

On the performance side, I've helped develop tracing tools which can be used by engineers to analyze API call patterns, resource leaks, and latency. I've also developed tools for detecting memory corruption and for simulating high memory usage conditions.

On the integration side, I helped develop a new build system based on SCons, which makes significantly faster parallel builds. I also helped develop continuous integration and testing scripts which automatically produce new builds and test them on several platforms whenever a new software package is released.

Software Intern

NVIDIA

2007 - 2008

During my first internship at NVIDIA, I worked on the Resource Manager, a kernel driver which is used in all operating systems NVIDIA supports. Among other things, I developed an interface for user-space applications (such as Matlab) to interact with the GPU fan controller. This allowed thermal engineers to experiment with better temperature management algorithms.

During my second internship, I worked on a new compiler for the Fermi architecture. This compiler optimized code from CUDA, GLSL (OpenGL), HLSL (Direct3D), OpenCL, and Cg. I developed optimization and validation passes for this compiler, and I also created a test harness to measure the performance of optimized code.

display 1 more...

Education

M.S. Computer Science

University of California San Diego

2008 - 2010

In graduate school, I built several LLVM based tools to measure and reduce memory usage for programs ported to an embedded environment. The overall goal was to allow network daemons (such as Apache or Samba) to continue serving requests from a "smart network card" while the host PC was in a sleep state. This would allow more people to save electricity by putting their PCs to sleep at night.

Software running on the smart network card had to run without any modification to the source code. We developed compiler passes to save memory by removing uncommonly used parts of programs and by delaying heap memory allocation until it was actually needed.

B.S. Computer Science

California Institute of Technology

2004 - 2008

For my senior project at Caltech, I designed a programming language and wrote a native code (x86) compiler for it. The language supported classes with inheritance, type parameterization, and functional programming.

I was also a teaching assistant for undergraduate classes in 3D graphics, C, and Ocaml.

Stack Exchange Last seen today

Open Source

tungsten

A cross-platform, cross-language platform for building compilers

Dec 2009 - Current; followed by 2 people

I'm the creator and sole developer of Tungsten, a platform for creating compilers for high level languages targeting multiple backends.

The goal of Tungsten is to make it as easy as possible to create a new compiler. Most of the work of a compiler is language agnostic: static analysis, type inference, optimization, code generation, etc. The developer of a language should only need to write a parser and a translator to a simple intermediate representation, and the rest of the work should be done by language agnostic tools.

Tungsten aims to fill this niche. It provides an SSA based intermediate representation. This is similar to LLVM, but it includes constructs used in most high level languages such as classes, polymorphic function calls, and type parameterization. An LLVM backend is provided, so any language supporting Tungsten can be optimized and compiled to native code on x86, ARM, and several other architectures. A JVM bytecode backend is also planned.


Writing

Polymorphic Inline Caches explained

jayconrod.com

There are some pretty cool things you can accomplish when you're generating native code on the fly. Most of them stem from the fact that you don't have to generate code just once: you can rewrite and recompile code at any time using runtime information. A particularly clever example of this is the Polymorphic Inline Cache, a way to optimize polymorphic function calls in dynamic languages.


Tools

Zeos 386

Emacs