blob: 8ab413097127bec17e1fff7b6a155a187c0175c2 [file] [log] [blame]
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "dex_cache.h"
4#include "heap.h"
5#include "globals.h"
6#include "logging.h"
7#include "object.h"
8
9namespace art {
10
Brian Carlstrom4a96b602011-07-26 16:40:23 -070011void DexCache::Init(ObjectArray<String>* strings,
12 ObjectArray<Class>* classes,
13 ObjectArray<Method>* methods,
14 ObjectArray<Field>* fields) {
Brian Carlstrom7e49dca2011-07-22 18:07:34 -070015 Set(kStrings, strings);
16 Set(kClasses, classes);
17 Set(kMethods, methods);
18 Set(kFields, fields);
19}
20
21} // namespace art