Fix #include format.

This commit is contained in:
Ben Vanik
2015-01-31 22:49:47 -08:00
parent f4f401e927
commit 00e4a4fe1b
373 changed files with 1171 additions and 1171 deletions

View File

@@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/backend/assembler.h>
#include "alloy/backend/assembler.h"
namespace alloy {
namespace backend {

View File

@@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/backend/backend.h>
#include "alloy/backend/backend.h"
namespace alloy {
namespace backend {

View File

@@ -12,7 +12,7 @@
#include <memory>
#include <alloy/backend/machine_info.h>
#include "alloy/backend/machine_info.h"
namespace alloy {
namespace runtime {

View File

@@ -7,16 +7,16 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_assembler.h>
#include "alloy/backend/x64/x64_assembler.h"
#include <alloy/reset_scope.h>
#include <alloy/backend/x64/x64_backend.h>
#include <alloy/backend/x64/x64_emitter.h>
#include <alloy/backend/x64/x64_function.h>
#include <alloy/hir/hir_builder.h>
#include <alloy/hir/label.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/reset_scope.h"
#include "alloy/backend/x64/x64_backend.h"
#include "alloy/backend/x64/x64_emitter.h"
#include "alloy/backend/x64/x64_function.h"
#include "alloy/hir/hir_builder.h"
#include "alloy/hir/label.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace BE {
#include <beaengine/BeaEngine.h>

View File

@@ -12,8 +12,8 @@
#include <memory>
#include <alloy/backend/assembler.h>
#include <alloy/string_buffer.h>
#include "alloy/backend/assembler.h"
#include "alloy/string_buffer.h"
namespace alloy {
namespace backend {

View File

@@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_backend.h>
#include "alloy/backend/x64/x64_backend.h"
#include <alloy/backend/x64/x64_assembler.h>
#include <alloy/backend/x64/x64_code_cache.h>
#include <alloy/backend/x64/x64_sequences.h>
#include <alloy/backend/x64/x64_thunk_emitter.h>
#include "alloy/backend/x64/x64_assembler.h"
#include "alloy/backend/x64/x64_code_cache.h"
#include "alloy/backend/x64/x64_sequences.h"
#include "alloy/backend/x64/x64_thunk_emitter.h"
namespace alloy {
namespace backend {

View File

@@ -10,7 +10,7 @@
#ifndef ALLOY_BACKEND_X64_X64_BACKEND_H_
#define ALLOY_BACKEND_X64_X64_BACKEND_H_
#include <alloy/backend/backend.h>
#include "alloy/backend/backend.h"
namespace alloy {
namespace backend {

View File

@@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_code_cache.h>
#include "alloy/backend/x64/x64_code_cache.h"
#include <poly/poly.h>
#include <xenia/profiling.h>
#include "poly/poly.h"
#include "xenia/profiling.h"
namespace alloy {
namespace backend {

View File

@@ -7,20 +7,20 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_emitter.h>
#include "alloy/backend/x64/x64_emitter.h"
#include <alloy/backend/x64/x64_backend.h>
#include <alloy/backend/x64/x64_code_cache.h>
#include <alloy/backend/x64/x64_function.h>
#include <alloy/backend/x64/x64_sequences.h>
#include <alloy/backend/x64/x64_thunk_emitter.h>
#include <alloy/hir/hir_builder.h>
#include <alloy/runtime/debug_info.h>
#include <alloy/runtime/runtime.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/runtime/thread_state.h>
#include <xdb/protocol.h>
#include <xenia/profiling.h>
#include "alloy/backend/x64/x64_backend.h"
#include "alloy/backend/x64/x64_code_cache.h"
#include "alloy/backend/x64/x64_function.h"
#include "alloy/backend/x64/x64_sequences.h"
#include "alloy/backend/x64/x64_thunk_emitter.h"
#include "alloy/hir/hir_builder.h"
#include "alloy/runtime/debug_info.h"
#include "alloy/runtime/runtime.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/runtime/thread_state.h"
#include "xdb/protocol.h"
#include "xenia/profiling.h"
namespace alloy {
namespace backend {

View File

@@ -10,8 +10,8 @@
#ifndef ALLOY_BACKEND_X64_X64_EMITTER_H_
#define ALLOY_BACKEND_X64_X64_EMITTER_H_
#include <alloy/hir/value.h>
#include <third_party/xbyak/xbyak/xbyak.h>
#include "alloy/hir/value.h"
#include "third_party/xbyak/xbyak/xbyak.h"
namespace alloy {
namespace hir {

View File

@@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_function.h>
#include "alloy/backend/x64/x64_function.h"
#include <alloy/backend/x64/x64_backend.h>
#include <alloy/runtime/runtime.h>
#include <alloy/runtime/thread_state.h>
#include "alloy/backend/x64/x64_backend.h"
#include "alloy/runtime/runtime.h"
#include "alloy/runtime/thread_state.h"
namespace alloy {
namespace backend {

View File

@@ -10,8 +10,8 @@
#ifndef ALLOY_BACKEND_X64_X64_FUNCTION_H_
#define ALLOY_BACKEND_X64_X64_FUNCTION_H_
#include <alloy/runtime/function.h>
#include <alloy/runtime/symbol_info.h>
#include "alloy/runtime/function.h"
#include "alloy/runtime/symbol_info.h"
namespace alloy {
namespace backend {

View File

@@ -22,12 +22,12 @@
// load into xmm register:
// [0F 0E 0D 0C] [0B 0A 09 08] [07 06 05 04] [03 02 01 00] (w, z, y, x)
#include <alloy/backend/x64/x64_sequences.h>
#include "alloy/backend/x64/x64_sequences.h"
#include <alloy/backend/x64/x64_emitter.h>
#include <alloy/backend/x64/x64_tracers.h>
#include <alloy/hir/hir_builder.h>
#include <alloy/runtime/runtime.h>
#include "alloy/backend/x64/x64_emitter.h"
#include "alloy/backend/x64/x64_tracers.h"
#include "alloy/hir/hir_builder.h"
#include "alloy/runtime/runtime.h"
namespace alloy {
namespace backend {
@@ -43,7 +43,7 @@ typedef bool (*SequenceSelectFn)(X64Emitter&, const Instr*, const Instr**);
std::unordered_multimap<uint32_t, SequenceSelectFn> sequence_table;
// Utilities/types used only in this file:
#include <alloy/backend/x64/x64_sequence.inl>
#include "alloy/backend/x64/x64_sequence.inl"
// Selects the right byte/word/etc from a vector. We need to flip logical
// indices (0,1,2,3,4,5,6,7,...) = (3,2,1,0,7,6,5,4,...)

View File

@@ -7,9 +7,9 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_thunk_emitter.h>
#include "alloy/backend/x64/x64_thunk_emitter.h"
#include <third_party/xbyak/xbyak/xbyak.h>
#include "third_party/xbyak/xbyak/xbyak.h"
namespace alloy {
namespace backend {

View File

@@ -10,8 +10,8 @@
#ifndef ALLOY_BACKEND_X64_X64_THUNK_EMITTER_H_
#define ALLOY_BACKEND_X64_X64_THUNK_EMITTER_H_
#include <alloy/backend/x64/x64_backend.h>
#include <alloy/backend/x64/x64_emitter.h>
#include "alloy/backend/x64/x64_backend.h"
#include "alloy/backend/x64/x64_emitter.h"
namespace alloy {
namespace backend {

View File

@@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/backend/x64/x64_tracers.h>
#include "alloy/backend/x64/x64_tracers.h"
#include <alloy/backend/x64/x64_emitter.h>
#include <alloy/runtime/runtime.h>
#include <alloy/runtime/thread_state.h>
#include "alloy/backend/x64/x64_emitter.h"
#include "alloy/runtime/runtime.h"
#include "alloy/runtime/thread_state.h"
using namespace alloy;
using namespace alloy::backend::x64;