~ubuntu-branches/ubuntu/precise/nodejs/precise

« back to all changes in this revision

Viewing changes to deps/v8/src/arm/codegen-arm-inl.h

  • Committer: Bazaar Package Importer
  • Author(s): Jérémy Lal
  • Date: 2010-08-20 11:49:04 UTC
  • mfrom: (7.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100820114904-lz22w6fkth7yh179
Tags: 0.2.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
#define __ ACCESS_MASM(masm_)
38
38
 
39
 
void CodeGenerator::LoadConditionAndSpill(Expression* expression,
40
 
                                          JumpTarget* true_target,
41
 
                                          JumpTarget* false_target,
42
 
                                          bool force_control) {
43
 
  LoadCondition(expression, true_target, false_target, force_control);
44
 
}
45
 
 
46
 
 
47
 
void CodeGenerator::LoadAndSpill(Expression* expression) {
48
 
  ASSERT(VirtualFrame::SpilledScope::is_spilled());
49
 
  Load(expression);
50
 
}
51
 
 
52
 
 
53
 
void CodeGenerator::VisitAndSpill(Statement* statement) {
54
 
  Visit(statement);
55
 
}
56
 
 
57
 
 
58
 
void CodeGenerator::VisitStatementsAndSpill(ZoneList<Statement*>* statements) {
59
 
  VisitStatements(statements);
60
 
}
61
 
 
62
 
 
63
39
// Platform-specific inline functions.
64
40
 
65
41
void DeferredCode::Jump() { __ jmp(&entry_label_); }