Files
sdk/runtime/vm/code_generator_arm.h
T
dgrove@google.com 4c0f559d23 Initial checkin.
git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15 260f80e4-7a28-3924-810f-c04153c831b5
2011-10-05 05:20:07 +00:00

51 lines
1.4 KiB
C++

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef VM_CODE_GENERATOR_ARM_H_
#define VM_CODE_GENERATOR_ARM_H_
#ifndef VM_CODE_GENERATOR_H_
#error Do not include code_generator_arm.h directly; use assembler.h instead.
#endif
#include "vm/allocation.h"
#include "vm/ast.h"
#include "vm/growable_array.h"
namespace dart {
// Forward declarations.
class Assembler;
class AstNode;
class ParsedFunction;
class CodeGenerator : public AstNodeVisitor {
public:
CodeGenerator(Assembler* assembler, const ParsedFunction& parsed_function) { }
virtual ~CodeGenerator() { }
bool GenerateCode() {
return false;
}
// Add exception handler table to code.
void FinalizeExceptionHandlers(const Code& code) { UNIMPLEMENTED(); }
// Add pc descriptors to code.
void FinalizePcDescriptors(const Code& code) { UNIMPLEMENTED(); }
// Allocate and return an arguments descriptor for the given 'num_arguments'
// and 'arguments'. If 'arguments' is NULL, treat all 'num_arguments' as
// positional arguments.
static const Array& ArgumentsDescriptor(int num_arguments,
ArgumentListNode* arguments);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(CodeGenerator);
};
} // namespace dart
#endif // VM_CODE_GENERATOR_ARM_H_