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,8 +7,8 @@
******************************************************************************
*/
#include <alloy/alloy.h>
#include <alloy/alloy-private.h>
#include "alloy/alloy.h"
#include "alloy/alloy-private.h"
using namespace alloy;

View File

@ -10,9 +10,9 @@
#ifndef ALLOY_ALLOY_H_
#define ALLOY_ALLOY_H_
#include <alloy/runtime/function.h>
#include <alloy/runtime/module.h>
#include <alloy/runtime/runtime.h>
#include <alloy/runtime/thread_state.h>
#include "alloy/runtime/function.h"
#include "alloy/runtime/module.h"
#include "alloy/runtime/runtime.h"
#include "alloy/runtime/thread_state.h"
#endif // ALLOY_ALLOY_H_

View File

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

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;

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/compiler/compiler.h>
#include "alloy/compiler/compiler.h"
#include <alloy/compiler/compiler_pass.h>
#include <xenia/profiling.h>
#include "alloy/compiler/compiler_pass.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -13,7 +13,7 @@
#include <memory>
#include <vector>
#include <alloy/hir/hir_builder.h>
#include "alloy/hir/hir_builder.h"
namespace alloy {
namespace runtime {

View File

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

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_COMPILER_PASS_H_
#define ALLOY_COMPILER_COMPILER_PASS_H_
#include <alloy/hir/hir_builder.h>
#include "alloy/hir/hir_builder.h"
namespace alloy {
namespace runtime {

View File

@ -10,18 +10,18 @@
#ifndef ALLOY_COMPILER_COMPILER_PASSES_H_
#define ALLOY_COMPILER_COMPILER_PASSES_H_
#include <alloy/compiler/passes/constant_propagation_pass.h>
#include <alloy/compiler/passes/context_promotion_pass.h>
#include <alloy/compiler/passes/control_flow_analysis_pass.h>
#include <alloy/compiler/passes/control_flow_simplification_pass.h>
#include <alloy/compiler/passes/data_flow_analysis_pass.h>
#include <alloy/compiler/passes/dead_code_elimination_pass.h>
//#include <alloy/compiler/passes/dead_store_elimination_pass.h>
#include <alloy/compiler/passes/finalization_pass.h>
#include <alloy/compiler/passes/register_allocation_pass.h>
#include <alloy/compiler/passes/simplification_pass.h>
#include <alloy/compiler/passes/validation_pass.h>
#include <alloy/compiler/passes/value_reduction_pass.h>
#include "alloy/compiler/passes/constant_propagation_pass.h"
#include "alloy/compiler/passes/context_promotion_pass.h"
#include "alloy/compiler/passes/control_flow_analysis_pass.h"
#include "alloy/compiler/passes/control_flow_simplification_pass.h"
#include "alloy/compiler/passes/data_flow_analysis_pass.h"
#include "alloy/compiler/passes/dead_code_elimination_pass.h"
//#include "alloy/compiler/passes/dead_store_elimination_pass.h"
#include "alloy/compiler/passes/finalization_pass.h"
#include "alloy/compiler/passes/register_allocation_pass.h"
#include "alloy/compiler/passes/simplification_pass.h"
#include "alloy/compiler/passes/validation_pass.h"
#include "alloy/compiler/passes/value_reduction_pass.h"
// TODO:
// - mark_use/mark_set

View File

@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/compiler/passes/constant_propagation_pass.h>
#include "alloy/compiler/passes/constant_propagation_pass.h"
#include <alloy/runtime/function.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/runtime/function.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_CONSTANT_PROPAGATION_PASS_H_
#define ALLOY_COMPILER_PASSES_CONSTANT_PROPAGATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,13 +7,13 @@
******************************************************************************
*/
#include <alloy/compiler/passes/context_promotion_pass.h>
#include "alloy/compiler/passes/context_promotion_pass.h"
#include <gflags/gflags.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
DEFINE_bool(store_all_context_values, false,
"Don't strip dead context stores to aid in debugging.");

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_CONTEXT_PROMOTION_PASS_H_
#define ALLOY_COMPILER_PASSES_CONTEXT_PROMOTION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
#if XE_COMPILER_MSVC
#pragma warning(push)

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/control_flow_analysis_pass.h>
#include "alloy/compiler/passes/control_flow_analysis_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_CONTROL_FLOW_ANALYSIS_PASS_H_
#define ALLOY_COMPILER_PASSES_CONTROL_FLOW_ANALYSIS_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/control_flow_simplification_pass.h>
#include "alloy/compiler/passes/control_flow_simplification_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_CONTROL_FLOW_SIMPLIFICATION_PASS_H_
#define ALLOY_COMPILER_PASSES_CONTROL_FLOW_SIMPLIFICATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/data_flow_analysis_pass.h>
#include "alloy/compiler/passes/data_flow_analysis_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
#if XE_COMPILER_MSVC
#pragma warning(push)

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_DATA_FLOW_ANALYSIS_PASS_H_
#define ALLOY_COMPILER_PASSES_DATA_FLOW_ANALYSIS_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {

View File

@ -7,9 +7,9 @@
******************************************************************************
*/
#include <alloy/compiler/passes/dead_code_elimination_pass.h>
#include "alloy/compiler/passes/dead_code_elimination_pass.h"
#include <xenia/profiling.h>
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_DEAD_CODE_ELIMINATION_PASS_H_
#define ALLOY_COMPILER_PASSES_DEAD_CODE_ELIMINATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/finalization_pass.h>
#include "alloy/compiler/passes/finalization_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_FINALIZATION_PASS_H_
#define ALLOY_COMPILER_PASSES_FINALIZATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/compiler/passes/register_allocation_pass.h>
#include "alloy/compiler/passes/register_allocation_pass.h"
#include <algorithm>
#include <xenia/profiling.h>
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -14,8 +14,8 @@
#include <bitset>
#include <vector>
#include <alloy/backend/machine_info.h>
#include <alloy/compiler/compiler_pass.h>
#include "alloy/backend/machine_info.h"
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,9 +7,9 @@
******************************************************************************
*/
#include <alloy/compiler/passes/simplification_pass.h>
#include "alloy/compiler/passes/simplification_pass.h"
#include <xenia/profiling.h>
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_SIMPLIFICATION_PASS_H_
#define ALLOY_COMPILER_PASSES_SIMPLIFICATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/validation_pass.h>
#include "alloy/compiler/passes/validation_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace compiler {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_VALIDATION_PASS_H_
#define ALLOY_COMPILER_PASSES_VALIDATION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/compiler/passes/value_reduction_pass.h>
#include "alloy/compiler/passes/value_reduction_pass.h"
#include <alloy/backend/backend.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/backend/backend.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
#if XE_COMPILER_MSVC
#pragma warning(push)

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_COMPILER_PASSES_VALUE_REDUCTION_PASS_H_
#define ALLOY_COMPILER_PASSES_VALUE_REDUCTION_PASS_H_
#include <alloy/compiler/compiler_pass.h>
#include "alloy/compiler/compiler_pass.h"
namespace alloy {
namespace compiler {

View File

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

View File

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

View File

@ -12,10 +12,10 @@
#include <memory>
#include <alloy/frontend/context_info.h>
#include <alloy/memory.h>
#include <alloy/runtime/function.h>
#include <alloy/runtime/symbol_info.h>
#include "alloy/frontend/context_info.h"
#include "alloy/memory.h"
#include "alloy/runtime/function.h"
#include "alloy/runtime/symbol_info.h"
namespace alloy {
namespace runtime {

View File

@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_context.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include <cstdlib>

View File

@ -10,8 +10,8 @@
#ifndef ALLOY_FRONTEND_PPC_PPC_CONTEXT_H_
#define ALLOY_FRONTEND_PPC_PPC_CONTEXT_H_
#include <alloy/vec128.h>
#include <poly/poly.h>
#include "alloy/vec128.h"
#include "poly/poly.h"
namespace alloy { namespace runtime {
class Runtime;

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_disasm.h>
#include "alloy/frontend/ppc/ppc_disasm.h"
#include <poly/poly.h>
#include <alloy/string_buffer.h>
#include "poly/poly.h"
#include "alloy/string_buffer.h"
namespace alloy {
namespace frontend {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_FRONTEND_PPC_PPC_DISASM_H_
#define ALLOY_FRONTEND_PPC_PPC_DISASM_H_
#include <alloy/frontend/ppc/ppc_instr.h>
#include "alloy/frontend/ppc/ppc_instr.h"
namespace alloy {
namespace frontend {

View File

@ -10,8 +10,8 @@
#ifndef ALLOY_FRONTEND_PPC_PPC_EMIT_PRIVATE_H_
#define ALLOY_FRONTEND_PPC_PPC_EMIT_PRIVATE_H_
#include <alloy/frontend/ppc/ppc_emit.h>
#include <alloy/frontend/ppc/ppc_instr.h>
#include "alloy/frontend/ppc/ppc_emit.h"
#include "alloy/frontend/ppc/ppc_instr.h"
namespace alloy {
namespace frontend {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_FRONTEND_PPC_PPC_EMIT_H_
#define ALLOY_FRONTEND_PPC_PPC_EMIT_H_
#include <alloy/frontend/ppc/ppc_instr.h>
#include "alloy/frontend/ppc/ppc_instr.h"
namespace alloy {
namespace frontend {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_emit-private.h>
#include "alloy/frontend/ppc/ppc_emit-private.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
namespace alloy {
namespace frontend {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_emit-private.h>
#include "alloy/frontend/ppc/ppc_emit-private.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
namespace alloy {
namespace frontend {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_emit-private.h>
#include "alloy/frontend/ppc/ppc_emit-private.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
namespace alloy {
namespace frontend {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_emit-private.h>
#include "alloy/frontend/ppc/ppc_emit-private.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
namespace alloy {
namespace frontend {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_emit-private.h>
#include "alloy/frontend/ppc/ppc_emit-private.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
namespace alloy {
namespace frontend {

View File

@ -7,13 +7,13 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_frontend.h>
#include "alloy/frontend/ppc/ppc_frontend.h"
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_disasm.h>
#include <alloy/frontend/ppc/ppc_emit.h>
#include <alloy/frontend/ppc/ppc_translator.h>
#include <alloy/runtime/runtime.h>
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_disasm.h"
#include "alloy/frontend/ppc/ppc_emit.h"
#include "alloy/frontend/ppc/ppc_translator.h"
#include "alloy/runtime/runtime.h"
namespace alloy {
namespace frontend {

View File

@ -12,8 +12,8 @@
#include <mutex>
#include <alloy/frontend/frontend.h>
#include <alloy/type_pool.h>
#include "alloy/frontend/frontend.h"
#include "alloy/type_pool.h"
namespace alloy {
namespace frontend {

View File

@ -7,16 +7,16 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include "alloy/frontend/ppc/ppc_hir_builder.h"
#include <alloy/alloy-private.h>
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_disasm.h>
#include <alloy/frontend/ppc/ppc_frontend.h>
#include <alloy/frontend/ppc/ppc_instr.h>
#include <alloy/hir/label.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/alloy-private.h"
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_disasm.h"
#include "alloy/frontend/ppc/ppc_frontend.h"
#include "alloy/frontend/ppc/ppc_instr.h"
#include "alloy/hir/label.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace frontend {

View File

@ -10,10 +10,10 @@
#ifndef ALLOY_FRONTEND_PPC_PPC_HIR_BUILDER_H_
#define ALLOY_FRONTEND_PPC_PPC_HIR_BUILDER_H_
#include <alloy/hir/hir_builder.h>
#include <alloy/runtime/function.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/string_buffer.h>
#include "alloy/hir/hir_builder.h"
#include "alloy/runtime/function.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/string_buffer.h"
namespace alloy {
namespace frontend {

View File

@ -7,14 +7,14 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_instr.h>
#include "alloy/frontend/ppc/ppc_instr.h"
#include <sstream>
#include <vector>
#include <alloy/frontend/ppc/ppc_instr_tables.h>
#include <alloy/string_buffer.h>
#include <poly/poly.h>
#include "alloy/frontend/ppc/ppc_instr_tables.h"
#include "alloy/string_buffer.h"
#include "poly/poly.h"
namespace alloy {
namespace frontend {

View File

@ -12,8 +12,8 @@
#include <cmath>
#include <alloy/frontend/ppc/ppc_instr.h>
#include <poly/poly.h>
#include "alloy/frontend/ppc/ppc_instr.h"
#include "poly/poly.h"
namespace alloy {
namespace frontend {

View File

@ -7,17 +7,17 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_scanner.h>
#include "alloy/frontend/ppc/ppc_scanner.h"
#include <algorithm>
#include <map>
#include <alloy/frontend/ppc/ppc_frontend.h>
#include <alloy/frontend/ppc/ppc_instr.h>
#include <alloy/runtime/runtime.h>
#include <poly/logging.h>
#include <poly/memory.h>
#include <xenia/profiling.h>
#include "alloy/frontend/ppc/ppc_frontend.h"
#include "alloy/frontend/ppc/ppc_instr.h"
#include "alloy/runtime/runtime.h"
#include "poly/logging.h"
#include "poly/memory.h"
#include "xenia/profiling.h"
#if 0
#define LOGPPC(fmt, ...) PLOGCORE('p', fmt, ##__VA_ARGS__)

View File

@ -12,7 +12,7 @@
#include <vector>
#include <alloy/runtime/symbol_info.h>
#include "alloy/runtime/symbol_info.h"
namespace alloy {
namespace frontend {

View File

@ -7,18 +7,18 @@
******************************************************************************
*/
#include <alloy/frontend/ppc/ppc_translator.h>
#include "alloy/frontend/ppc/ppc_translator.h"
#include <alloy/alloy-private.h>
#include <alloy/compiler/compiler_passes.h>
#include <alloy/frontend/ppc/ppc_disasm.h>
#include <alloy/frontend/ppc/ppc_frontend.h>
#include <alloy/frontend/ppc/ppc_hir_builder.h>
#include <alloy/frontend/ppc/ppc_instr.h>
#include <alloy/frontend/ppc/ppc_scanner.h>
#include <alloy/reset_scope.h>
#include <alloy/runtime/runtime.h>
#include <xenia/profiling.h>
#include "alloy/alloy-private.h"
#include "alloy/compiler/compiler_passes.h"
#include "alloy/frontend/ppc/ppc_disasm.h"
#include "alloy/frontend/ppc/ppc_frontend.h"
#include "alloy/frontend/ppc/ppc_hir_builder.h"
#include "alloy/frontend/ppc/ppc_instr.h"
#include "alloy/frontend/ppc/ppc_scanner.h"
#include "alloy/reset_scope.h"
#include "alloy/runtime/runtime.h"
#include "xenia/profiling.h"
namespace alloy {
namespace frontend {

View File

@ -12,10 +12,10 @@
#include <memory>
#include <alloy/backend/assembler.h>
#include <alloy/compiler/compiler.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/string_buffer.h>
#include "alloy/backend/assembler.h"
#include "alloy/compiler/compiler.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/string_buffer.h"
namespace alloy {
namespace frontend {

View File

@ -7,13 +7,13 @@
******************************************************************************
*/
#include <alloy/alloy.h>
#include <alloy/backend/x64/x64_backend.h>
#include <alloy/frontend/ppc/ppc_context.h>
#include <alloy/frontend/ppc/ppc_frontend.h>
#include <alloy/runtime/raw_module.h>
#include <poly/main.h>
#include <poly/poly.h>
#include "alloy/alloy.h"
#include "alloy/backend/x64/x64_backend.h"
#include "alloy/frontend/ppc/ppc_context.h"
#include "alloy/frontend/ppc/ppc_frontend.h"
#include "alloy/runtime/raw_module.h"
#include "poly/main.h"
#include "poly/poly.h"
#if !XE_LIKE_WIN32
#include <dirent.h>

View File

@ -7,9 +7,9 @@
******************************************************************************
*/
#include <alloy/hir/block.h>
#include "alloy/hir/block.h"
#include <alloy/hir/instr.h>
#include "alloy/hir/instr.h"
namespace alloy {
namespace hir {

View File

@ -10,7 +10,7 @@
#ifndef ALLOY_HIR_BLOCK_H_
#define ALLOY_HIR_BLOCK_H_
#include <alloy/arena.h>
#include "alloy/arena.h"
namespace llvm {
class BitVector;

View File

@ -7,14 +7,14 @@
******************************************************************************
*/
#include <alloy/hir/hir_builder.h>
#include "alloy/hir/hir_builder.h"
#include <alloy/hir/block.h>
#include <alloy/hir/instr.h>
#include <alloy/hir/label.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/string_buffer.h>
#include <xenia/profiling.h>
#include "alloy/hir/block.h"
#include "alloy/hir/instr.h"
#include "alloy/hir/label.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/string_buffer.h"
#include "xenia/profiling.h"
namespace alloy {
namespace hir {

View File

@ -12,11 +12,11 @@
#include <vector>
#include <alloy/hir/block.h>
#include <alloy/hir/instr.h>
#include <alloy/hir/label.h>
#include <alloy/hir/opcodes.h>
#include <alloy/hir/value.h>
#include "alloy/hir/block.h"
#include "alloy/hir/instr.h"
#include "alloy/hir/label.h"
#include "alloy/hir/opcodes.h"
#include "alloy/hir/value.h"
namespace alloy {
class StringBuffer;

View File

@ -7,9 +7,9 @@
******************************************************************************
*/
#include <alloy/hir/instr.h>
#include "alloy/hir/instr.h"
#include <alloy/hir/block.h>
#include "alloy/hir/block.h"
namespace alloy {
namespace hir {

View File

@ -10,8 +10,8 @@
#ifndef ALLOY_HIR_INSTR_H_
#define ALLOY_HIR_INSTR_H_
#include <alloy/hir/opcodes.h>
#include <alloy/hir/value.h>
#include "alloy/hir/opcodes.h"
#include "alloy/hir/value.h"
namespace alloy {
namespace runtime {

View File

@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/hir/opcodes.h>
#include "alloy/hir/opcodes.h"
namespace alloy {
namespace hir {
@ -16,7 +16,7 @@ namespace hir {
const OpcodeInfo num##_info = { \
flags, sig, name, num, \
};
#include <alloy/hir/opcodes.inl>
#include "alloy/hir/opcodes.inl"
#undef DEFINE_OPCODE
} // namespace hir

View File

@ -285,7 +285,7 @@ typedef struct {
} OpcodeInfo;
#define DEFINE_OPCODE(num, name, sig, flags) extern const OpcodeInfo num##_info;
#include <alloy/hir/opcodes.inl>
#include "alloy/hir/opcodes.inl"
#undef DEFINE_OPCODE
} // namespace hir

View File

@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/hir/value.h>
#include "alloy/hir/value.h"
#include <cmath>

View File

@ -10,11 +10,11 @@
#ifndef ALLOY_HIR_VALUE_H_
#define ALLOY_HIR_VALUE_H_
#include <alloy/arena.h>
#include <alloy/backend/machine_info.h>
#include <alloy/hir/opcodes.h>
#include <alloy/vec128.h>
#include <poly/poly.h>
#include "alloy/arena.h"
#include "alloy/backend/machine_info.h"
#include "alloy/hir/opcodes.h"
#include "alloy/vec128.h"
#include "poly/poly.h"
namespace alloy {
namespace hir {

View File

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

View File

@ -7,7 +7,7 @@
******************************************************************************
*/
#include <alloy/runtime/debug_info.h>
#include "alloy/runtime/debug_info.h"
#include <cstdlib>

View File

@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/runtime/debugger.h>
#include "alloy/runtime/debugger.h"
#include <mutex>
#include <alloy/runtime/runtime.h>
#include "alloy/runtime/runtime.h"
namespace alloy {
namespace runtime {

View File

@ -15,7 +15,7 @@
#include <string>
#include <unordered_map>
#include <poly/delegate.h>
#include "poly/delegate.h"
namespace alloy {
namespace runtime {

View File

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

View File

@ -7,12 +7,12 @@
******************************************************************************
*/
#include <alloy/runtime/function.h>
#include "alloy/runtime/function.h"
#include <alloy/runtime/debugger.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/runtime/thread_state.h>
#include <xdb/protocol.h>
#include "alloy/runtime/debugger.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/runtime/thread_state.h"
#include "xdb/protocol.h"
namespace alloy {
namespace runtime {

View File

@ -14,7 +14,7 @@
#include <mutex>
#include <vector>
#include <alloy/runtime/debug_info.h>
#include "alloy/runtime/debug_info.h"
namespace alloy {
namespace runtime {

View File

@ -7,11 +7,11 @@
******************************************************************************
*/
#include <alloy/runtime/instrument.h>
#include "alloy/runtime/instrument.h"
#include <alloy/memory.h>
#include <alloy/runtime/function.h>
#include <alloy/runtime/runtime.h>
#include "alloy/memory.h"
#include "alloy/runtime/function.h"
#include "alloy/runtime/runtime.h"
namespace alloy {
namespace runtime {

View File

@ -7,14 +7,14 @@
******************************************************************************
*/
#include <alloy/runtime/module.h>
#include "alloy/runtime/module.h"
#include <fstream>
#include <sstream>
#include <alloy/runtime/runtime.h>
#include <poly/poly.h>
#include <xenia/profiling.h>
#include "alloy/runtime/runtime.h"
#include "poly/poly.h"
#include "xenia/profiling.h"
namespace alloy {
namespace runtime {

View File

@ -16,8 +16,8 @@
#include <unordered_map>
#include <vector>
#include <alloy/memory.h>
#include <alloy/runtime/symbol_info.h>
#include "alloy/memory.h"
#include "alloy/runtime/symbol_info.h"
namespace alloy {
namespace runtime {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/runtime/raw_module.h>
#include "alloy/runtime/raw_module.h"
#include <poly/platform.h>
#include <poly/string.h>
#include "poly/platform.h"
#include "poly/string.h"
namespace alloy {
namespace runtime {

View File

@ -12,7 +12,7 @@
#include <string>
#include <alloy/runtime/module.h>
#include "alloy/runtime/module.h"
namespace alloy {
namespace runtime {

View File

@ -7,17 +7,17 @@
******************************************************************************
*/
#include <alloy/runtime/runtime.h>
#include "alloy/runtime/runtime.h"
#include <gflags/gflags.h>
#include <alloy/runtime/module.h>
#include <poly/poly.h>
#include <xdb/protocol.h>
#include <xenia/profiling.h>
#include "alloy/runtime/module.h"
#include "poly/poly.h"
#include "xdb/protocol.h"
#include "xenia/profiling.h"
// TODO(benvanik): based on compiler support
#include <alloy/backend/x64/x64_backend.h>
#include "alloy/backend/x64/x64_backend.h"
DEFINE_string(runtime_backend, "any", "Runtime backend [any, x64].");

View File

@ -14,14 +14,14 @@
#include <mutex>
#include <vector>
#include <alloy/backend/backend.h>
#include <alloy/frontend/frontend.h>
#include <alloy/memory.h>
#include <alloy/runtime/debugger.h>
#include <alloy/runtime/entry_table.h>
#include <alloy/runtime/module.h>
#include <alloy/runtime/symbol_info.h>
#include <alloy/runtime/thread_state.h>
#include "alloy/backend/backend.h"
#include "alloy/frontend/frontend.h"
#include "alloy/memory.h"
#include "alloy/runtime/debugger.h"
#include "alloy/runtime/entry_table.h"
#include "alloy/runtime/module.h"
#include "alloy/runtime/symbol_info.h"
#include "alloy/runtime/thread_state.h"
namespace alloy {
namespace runtime {

View File

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

View File

@ -7,13 +7,13 @@
******************************************************************************
*/
#include <alloy/runtime/test_module.h>
#include "alloy/runtime/test_module.h"
#include <alloy/compiler/compiler_passes.h>
#include <alloy/reset_scope.h>
#include <alloy/runtime/runtime.h>
#include <poly/platform.h>
#include <poly/string.h>
#include "alloy/compiler/compiler_passes.h"
#include "alloy/reset_scope.h"
#include "alloy/runtime/runtime.h"
#include "poly/platform.h"
#include "poly/string.h"
namespace alloy {
namespace runtime {

View File

@ -14,10 +14,10 @@
#include <memory>
#include <string>
#include <alloy/backend/assembler.h>
#include <alloy/compiler/compiler.h>
#include <alloy/hir/hir_builder.h>
#include <alloy/runtime/module.h>
#include "alloy/backend/assembler.h"
#include "alloy/compiler/compiler.h"
#include "alloy/hir/hir_builder.h"
#include "alloy/runtime/module.h"
namespace alloy {
namespace runtime {

View File

@ -7,10 +7,10 @@
******************************************************************************
*/
#include <alloy/runtime/thread_state.h>
#include "alloy/runtime/thread_state.h"
#include <alloy/runtime/runtime.h>
#include <poly/poly.h>
#include "alloy/runtime/runtime.h"
#include "poly/poly.h"
namespace alloy {
namespace runtime {

View File

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

Some files were not shown because too many files have changed in this diff Show More