blob: 3bd42ed6c7d59ef377c776bba340a83733c55d76 [file] [log] [blame]
Andrei Popescu31002712010-02-23 13:46:05 +00001// Copyright 2010 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29
30#include "v8.h"
31
32#include "codegen-inl.h"
33#include "debug.h"
34#include "runtime.h"
35
36namespace v8 {
37namespace internal {
38
39
40#define __ ACCESS_MASM(masm)
41
42
43void Builtins::Generate_Adaptor(MacroAssembler* masm,
44 CFunctionId id,
45 BuiltinExtraArguments extra_args) {
46 UNIMPLEMENTED_MIPS();
47}
48
49
50void Builtins::Generate_ArrayCode(MacroAssembler* masm) {
51 UNIMPLEMENTED_MIPS();
52}
53
54
55void Builtins::Generate_ArrayConstructCode(MacroAssembler* masm) {
56 UNIMPLEMENTED_MIPS();
57}
58
59
60void Builtins::Generate_JSConstructCall(MacroAssembler* masm) {
61 UNIMPLEMENTED_MIPS();
62}
63
64
65void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) {
66 UNIMPLEMENTED_MIPS();
67}
68
69
70void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) {
71 UNIMPLEMENTED_MIPS();
72}
73
74
75static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm,
76 bool is_construct) {
77 UNIMPLEMENTED_MIPS();
78}
79
80
81void Builtins::Generate_JSEntryTrampoline(MacroAssembler* masm) {
82 Generate_JSEntryTrampolineHelper(masm, false);
83}
84
85
86void Builtins::Generate_JSConstructEntryTrampoline(MacroAssembler* masm) {
87 Generate_JSEntryTrampolineHelper(masm, true);
88}
89
90
91void Builtins::Generate_FunctionCall(MacroAssembler* masm) {
92 UNIMPLEMENTED_MIPS();
93}
94
95
96void Builtins::Generate_FunctionApply(MacroAssembler* masm) {
97 UNIMPLEMENTED_MIPS();
98}
99
100
101void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) {
102 UNIMPLEMENTED_MIPS();
103}
104
105
106#undef __
107
108} } // namespace v8::internal
109