Home | History | Annotate | Download | only in s390
      1 // Copyright 2015 the V8 project authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #if V8_TARGET_ARCH_S390
      6 
      7 #include "src/assembler.h"
      8 #include "src/frame-constants.h"
      9 #include "src/macro-assembler.h"
     10 #include "src/s390/assembler-s390-inl.h"
     11 #include "src/s390/assembler-s390.h"
     12 #include "src/s390/macro-assembler-s390.h"
     13 
     14 #include "src/s390/frame-constants-s390.h"
     15 
     16 namespace v8 {
     17 namespace internal {
     18 
     19 Register JavaScriptFrame::fp_register() { return v8::internal::fp; }
     20 Register JavaScriptFrame::context_register() { return cp; }
     21 Register JavaScriptFrame::constant_pool_pointer_register() { UNREACHABLE(); }
     22 
     23 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) {
     24   return register_count;
     25 }
     26 
     27 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) {
     28   USE(register_count);
     29   return 0;
     30 }
     31 
     32 }  // namespace internal
     33 }  // namespace v8
     34 
     35 #endif  // V8_TARGET_ARCH_S390
     36