| Index: src/compiler/x87/linkage-x87.cc
|
| diff --git a/src/compiler/x87/linkage-x87.cc b/src/compiler/x87/linkage-x87.cc
|
| deleted file mode 100644
|
| index 45fbd55bd0ccd94437a3f865404cad327624c01f..0000000000000000000000000000000000000000
|
| --- a/src/compiler/x87/linkage-x87.cc
|
| +++ /dev/null
|
| @@ -1,60 +0,0 @@
|
| -// Copyright 2014 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.
|
| -
|
| -#include "src/assembler.h"
|
| -#include "src/code-stubs.h"
|
| -#include "src/compiler/linkage.h"
|
| -#include "src/compiler/linkage-impl.h"
|
| -#include "src/zone.h"
|
| -
|
| -namespace v8 {
|
| -namespace internal {
|
| -namespace compiler {
|
| -
|
| -struct X87LinkageHelperTraits {
|
| - static Register ReturnValueReg() { return eax; }
|
| - static Register ReturnValue2Reg() { return edx; }
|
| - static Register JSCallFunctionReg() { return edi; }
|
| - static Register ContextReg() { return esi; }
|
| - static Register InterpreterBytecodeOffsetReg() { return ecx; }
|
| - static Register InterpreterBytecodeArrayReg() { return edi; }
|
| - static Register InterpreterDispatchTableReg() { return ebx; }
|
| - static Register RuntimeCallFunctionReg() { return ebx; }
|
| - static Register RuntimeCallArgCountReg() { return eax; }
|
| -};
|
| -
|
| -typedef LinkageHelper<X87LinkageHelperTraits> LH;
|
| -
|
| -CallDescriptor* Linkage::GetJSCallDescriptor(Zone* zone, bool is_osr,
|
| - int parameter_count,
|
| - CallDescriptor::Flags flags) {
|
| - return LH::GetJSCallDescriptor(zone, is_osr, parameter_count, flags);
|
| -}
|
| -
|
| -
|
| -CallDescriptor* Linkage::GetRuntimeCallDescriptor(
|
| - Zone* zone, Runtime::FunctionId function, int parameter_count,
|
| - Operator::Properties properties) {
|
| - return LH::GetRuntimeCallDescriptor(zone, function, parameter_count,
|
| - properties);
|
| -}
|
| -
|
| -
|
| -CallDescriptor* Linkage::GetStubCallDescriptor(
|
| - Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor,
|
| - int stack_parameter_count, CallDescriptor::Flags flags,
|
| - Operator::Properties properties, MachineType return_type) {
|
| - return LH::GetStubCallDescriptor(isolate, zone, descriptor,
|
| - stack_parameter_count, flags, properties,
|
| - return_type);
|
| -}
|
| -
|
| -
|
| -CallDescriptor* Linkage::GetInterpreterDispatchDescriptor(Zone* zone) {
|
| - return LH::GetInterpreterDispatchDescriptor(zone);
|
| -}
|
| -
|
| -} // namespace compiler
|
| -} // namespace internal
|
| -} // namespace v8
|
|
|