| Index: src/compiler/machine-operator.h
|
| diff --git a/src/compiler/machine-operator.h b/src/compiler/machine-operator.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..88f257c3eef379369cfed9351611110630f9159b
|
| --- /dev/null
|
| +++ b/src/compiler/machine-operator.h
|
| @@ -0,0 +1,177 @@
|
| +// Copyright 2013 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8_COMPILER_MACHINE_OPERATOR_H_
|
| +#define V8_COMPILER_MACHINE_OPERATOR_H_
|
| +
|
| +#include "src/compiler/opcodes.h"
|
| +#include "src/compiler/operator.h"
|
| +#include "src/zone.h"
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
| +
|
| +// An enumeration of the storage representations at the machine level.
|
| +// - Words are uninterpreted bits of a given fixed size that can be used
|
| +// to store integers and pointers. They are normally allocated to general
|
| +// purpose registers by the backend and are not tracked for GC.
|
| +// - Floats are bits of a given fixed size that are used to store floating
|
| +// point numbers. They are normally allocated to the floating point
|
| +// registers of the machine and are not tracked for the GC.
|
| +// - Tagged values are the size of a reference into the heap and can store
|
| +// small words or references into the heap using a language and potentially
|
| +// machine-dependent tagging scheme. These values are tracked by the code
|
| +// generator for precise GC.
|
| +enum MachineRepresentation {
|
| + kMachineWord8,
|
| + kMachineWord16,
|
| + kMachineWord32,
|
| + kMachineWord64,
|
| + kMachineFloat64,
|
| + kMachineTagged,
|
| + kMachineLast
|
| +};
|
| +
|
| +
|
| +// TODO(turbofan): other write barriers are possible based on type
|
| +enum WriteBarrierKind { kNoWriteBarrier, kFullWriteBarrier };
|
| +
|
| +
|
| +// A Store needs a MachineRepresentation and a WriteBarrierKind
|
| +// in order to emit the correct write barrier.
|
| +struct StoreRepresentation {
|
| + MachineRepresentation rep;
|
| + WriteBarrierKind write_barrier_kind;
|
| +};
|
| +
|
| +
|
| +// Interface for building machine-level operators. These operators are
|
| +// machine-level but machine-independent and thus define a language suitable
|
| +// for generating code to run on architectures such as ia32, x64, arm, etc.
|
| +class MachineOperatorBuilder {
|
| + public:
|
| + explicit MachineOperatorBuilder(Zone* zone,
|
| + MachineRepresentation word = pointer_rep())
|
| + : zone_(zone), word_(word) {
|
| + CHECK(word == kMachineWord32 || word == kMachineWord64);
|
| + }
|
| +
|
| +#define SIMPLE(name, properties, inputs, outputs) \
|
| + return new (zone_) \
|
| + SimpleOperator(IrOpcode::k##name, properties, inputs, outputs, #name);
|
| +
|
| +#define OP1(name, ptype, pname, properties, inputs, outputs) \
|
| + return new (zone_) \
|
| + Operator1<ptype>(IrOpcode::k##name, properties | Operator::kNoThrow, \
|
| + inputs, outputs, #name, pname)
|
| +
|
| +#define BINOP(name) SIMPLE(name, Operator::kPure, 2, 1)
|
| +#define BINOP_C(name) \
|
| + SIMPLE(name, Operator::kCommutative | Operator::kPure, 2, 1)
|
| +#define BINOP_AC(name) \
|
| + SIMPLE(name, \
|
| + Operator::kAssociative | Operator::kCommutative | Operator::kPure, 2, \
|
| + 1)
|
| +#define UNOP(name) SIMPLE(name, Operator::kPure, 1, 1)
|
| +
|
| +#define WORD_SIZE(x) return is64() ? Word64##x() : Word32##x()
|
| +
|
| + Operator* Load(MachineRepresentation rep) { // load [base + index]
|
| + OP1(Load, MachineRepresentation, rep, Operator::kNoWrite, 2, 1);
|
| + }
|
| + // store [base + index], value
|
| + Operator* Store(MachineRepresentation rep,
|
| + WriteBarrierKind kind = kNoWriteBarrier) {
|
| + StoreRepresentation store_rep = {rep, kind};
|
| + OP1(Store, StoreRepresentation, store_rep, Operator::kNoRead, 3, 0);
|
| + }
|
| +
|
| + Operator* WordAnd() { WORD_SIZE(And); }
|
| + Operator* WordOr() { WORD_SIZE(Or); }
|
| + Operator* WordXor() { WORD_SIZE(Xor); }
|
| + Operator* WordShl() { WORD_SIZE(Shl); }
|
| + Operator* WordShr() { WORD_SIZE(Shr); }
|
| + Operator* WordSar() { WORD_SIZE(Sar); }
|
| + Operator* WordEqual() { WORD_SIZE(Equal); }
|
| +
|
| + Operator* Word32And() { BINOP_AC(Word32And); }
|
| + Operator* Word32Or() { BINOP_AC(Word32Or); }
|
| + Operator* Word32Xor() { BINOP_AC(Word32Xor); }
|
| + Operator* Word32Shl() { BINOP(Word32Shl); }
|
| + Operator* Word32Shr() { BINOP(Word32Shr); }
|
| + Operator* Word32Sar() { BINOP(Word32Sar); }
|
| + Operator* Word32Equal() { BINOP_C(Word32Equal); }
|
| +
|
| + Operator* Word64And() { BINOP_AC(Word64And); }
|
| + Operator* Word64Or() { BINOP_AC(Word64Or); }
|
| + Operator* Word64Xor() { BINOP_AC(Word64Xor); }
|
| + Operator* Word64Shl() { BINOP(Word64Shl); }
|
| + Operator* Word64Shr() { BINOP(Word64Shr); }
|
| + Operator* Word64Sar() { BINOP(Word64Sar); }
|
| + Operator* Word64Equal() { BINOP_C(Word64Equal); }
|
| +
|
| + Operator* Int32Add() { BINOP_AC(Int32Add); }
|
| + Operator* Int32Sub() { BINOP(Int32Sub); }
|
| + Operator* Int32Mul() { BINOP_AC(Int32Mul); }
|
| + Operator* Int32Div() { BINOP(Int32Div); }
|
| + Operator* Int32UDiv() { BINOP(Int32UDiv); }
|
| + Operator* Int32Mod() { BINOP(Int32Mod); }
|
| + Operator* Int32UMod() { BINOP(Int32UMod); }
|
| + Operator* Int32LessThan() { BINOP(Int32LessThan); }
|
| + Operator* Int32LessThanOrEqual() { BINOP(Int32LessThanOrEqual); }
|
| + Operator* Uint32LessThan() { BINOP(Uint32LessThan); }
|
| + Operator* Uint32LessThanOrEqual() { BINOP(Uint32LessThanOrEqual); }
|
| +
|
| + Operator* Int64Add() { BINOP_AC(Int64Add); }
|
| + Operator* Int64Sub() { BINOP(Int64Sub); }
|
| + Operator* Int64Mul() { BINOP_AC(Int64Mul); }
|
| + Operator* Int64Div() { BINOP(Int64Div); }
|
| + Operator* Int64UDiv() { BINOP(Int64UDiv); }
|
| + Operator* Int64Mod() { BINOP(Int64Mod); }
|
| + Operator* Int64UMod() { BINOP(Int64UMod); }
|
| + Operator* Int64LessThan() { BINOP(Int64LessThan); }
|
| + Operator* Int64LessThanOrEqual() { BINOP(Int64LessThanOrEqual); }
|
| +
|
| + Operator* ConvertInt32ToInt64() { UNOP(ConvertInt32ToInt64); }
|
| + Operator* ConvertInt64ToInt32() { UNOP(ConvertInt64ToInt32); }
|
| + Operator* ConvertInt32ToFloat64() { UNOP(ConvertInt32ToFloat64); }
|
| + Operator* ConvertUint32ToFloat64() { UNOP(ConvertUint32ToFloat64); }
|
| + // TODO(titzer): add rounding mode to floating point conversion.
|
| + Operator* ConvertFloat64ToInt32() { UNOP(ConvertFloat64ToInt32); }
|
| + Operator* ConvertFloat64ToUint32() { UNOP(ConvertFloat64ToUint32); }
|
| +
|
| + // TODO(titzer): do we need different rounding modes for float arithmetic?
|
| + Operator* Float64Add() { BINOP_C(Float64Add); }
|
| + Operator* Float64Sub() { BINOP(Float64Sub); }
|
| + Operator* Float64Mul() { BINOP_C(Float64Mul); }
|
| + Operator* Float64Div() { BINOP(Float64Div); }
|
| + Operator* Float64Mod() { BINOP(Float64Mod); }
|
| + Operator* Float64Equal() { BINOP_C(Float64Equal); }
|
| + Operator* Float64LessThan() { BINOP(Float64LessThan); }
|
| + Operator* Float64LessThanOrEqual() { BINOP(Float64LessThanOrEqual); }
|
| +
|
| + inline bool is32() const { return word_ == kMachineWord32; }
|
| + inline bool is64() const { return word_ == kMachineWord64; }
|
| + inline MachineRepresentation word() const { return word_; }
|
| +
|
| + static inline MachineRepresentation pointer_rep() {
|
| + return kPointerSize == 8 ? kMachineWord64 : kMachineWord32;
|
| + }
|
| +
|
| +#undef WORD_SIZE
|
| +#undef UNOP
|
| +#undef BINOP
|
| +#undef OP1
|
| +#undef SIMPLE
|
| +
|
| + private:
|
| + Zone* zone_;
|
| + MachineRepresentation word_;
|
| +};
|
| +}
|
| +}
|
| +} // namespace v8::internal::compiler
|
| +
|
| +#endif // V8_COMPILER_MACHINE_OPERATOR_H_
|
|
|