blob: d2a4ad4417b691158c1db8e8db2946e7cb93df4b [file] [log] [blame]
Shih-wei Liaod1fec812012-02-13 09:51:10 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "method_compiler.h"
18
19#include "class_linker.h"
20#include "class_loader.h"
21#include "compiler.h"
22#include "constants.h"
23#include "dex_file.h"
24#include "runtime.h"
25
26#include <UniquePtr.h>
27#include <stdint.h>
28
29using namespace art::compiler_llvm;
30
31namespace art {
32
33int oatVRegOffset(const art::DexFile::CodeItem* code_item,
34 uint32_t core_spills, uint32_t fp_spills,
35 size_t frame_size, int reg) {
36 UNIMPLEMENTED(FATAL);
37 return 0;
38}
39
40} // namespace art