SlideShare a Scribd company logo
Optimize Code with
LLVM
What is the main point?

The talk gives a detailed explanation of several new
Build Settings in XCode.
“Relax IEEE Compliance”
“Vectorize Loops”
“Link-Time Optimization”
“Unroll Loops”
“Optimization Level -Ofast”
What could you get out of it?

A C/Assembly level explanation of what the
complier is doing to take advantage of some of
the features of ARM/Intel processors.
It is especially useful if you write code that has
a lot of for-loops (games, scientific applications,
image processing, etc.)
What is the most interesting point?

There were a couple of interesting points which were
briefly mentioned:
The restrict keyword.
Structs of arrays are better than arrays of structs.

More Related Content

PPT
Reactive cocoa
KEY
ViewController/State
KEY
Two-StageCreation
PDF
โรงแรม ที่พัก ทริปท่องเที่ยวต่างประเทศราคาถูก
PPSX
ความรู้เบื้องต้นเกี่ยวกับการแนะแนว
PDF
Aguinaldo Boquimpani - Marketers - Interactive TV Advertising
PDF
BCOP Be A Hero Program
PPT
State ofappdevelopment
Reactive cocoa
ViewController/State
Two-StageCreation
โรงแรม ที่พัก ทริปท่องเที่ยวต่างประเทศราคาถูก
ความรู้เบื้องต้นเกี่ยวกับการแนะแนว
Aguinaldo Boquimpani - Marketers - Interactive TV Advertising
BCOP Be A Hero Program
State ofappdevelopment

Viewers also liked (6)

KEY
Categories
PDF
App Idea - Meet your team
PPTX
SQLite with UWP
PPT
Connecting to a REST API in iOS
PPT
Communication & public speaking
PDF
Azure With Windows Store App Development
Categories
App Idea - Meet your team
SQLite with UWP
Connecting to a REST API in iOS
Communication & public speaking
Azure With Windows Store App Development
Ad

Optimize llvm

  • 2. What is the main point? The talk gives a detailed explanation of several new Build Settings in XCode. “Relax IEEE Compliance” “Vectorize Loops” “Link-Time Optimization” “Unroll Loops” “Optimization Level -Ofast”
  • 3. What could you get out of it? A C/Assembly level explanation of what the complier is doing to take advantage of some of the features of ARM/Intel processors. It is especially useful if you write code that has a lot of for-loops (games, scientific applications, image processing, etc.)
  • 4. What is the most interesting point? There were a couple of interesting points which were briefly mentioned: The restrict keyword. Structs of arrays are better than arrays of structs.

Editor's Notes