summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/codegen.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-11-27 16:09:55 -0800
committer buzbee <buzbee@google.com> 2012-11-27 16:12:37 -0800
commita3a82b219531effb53aef13f48e50db9bf0f9fb5 (patch)
tree841056cc525f4b8547f914ab39bc17e2cea47c39 /src/compiler/codegen/codegen.h
parent9c85bc0b6577ee00e4e2d3ee9a7d0fd72d7a4966 (diff)
Quick compiler: minor cleanup
Remove dead software floating point support. Move a common function from target specific to target independent. Change-Id: Iaf793857f7e0faae02c672b9f1d45a0658143a51
Diffstat (limited to 'src/compiler/codegen/codegen.h')
-rw-r--r--src/compiler/codegen/codegen.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/compiler/codegen/codegen.h b/src/compiler/codegen/codegen.h
index 9bc306d35d..9dfa6091c3 100644
--- a/src/compiler/codegen/codegen.h
+++ b/src/compiler/codegen/codegen.h
@@ -153,12 +153,6 @@ class Codegen {
RegLocation rl_src1, RegLocation rl_src2);
bool GenConversionCall(CompilationUnit* cu, int func_offset, RegLocation rl_dest,
RegLocation rl_src);
- bool GenArithOpFloatPortable(CompilationUnit* cu, Instruction::Code opcode, RegLocation rl_dest,
- RegLocation rl_src1, RegLocation rl_src2);
- bool GenArithOpDoublePortable(CompilationUnit* cu, Instruction::Code opcode, RegLocation rl_dest,
- RegLocation rl_src1, RegLocation rl_src2);
- bool GenConversionPortable(CompilationUnit* cu, Instruction::Code opcode, RegLocation rl_dest,
- RegLocation rl_src);
void GenSuspendTest(CompilationUnit* cu, int opt_flags);
void GenSuspendTestAndBranch(CompilationUnit* cu, int opt_flags, LIR* target);
@@ -294,7 +288,6 @@ class Codegen {
virtual void SetupTargetResourceMasks(CompilationUnit* cu, LIR* lir) = 0;
virtual const char* GetTargetInstFmt(int opcode) = 0;
virtual const char* GetTargetInstName(int opcode) = 0;
- virtual int AssignInsnOffsets(CompilationUnit* cu) = 0;
virtual std::string BuildInsnString(const char* fmt, LIR* lir, unsigned char* base_addr) = 0;
virtual uint64_t GetPCUseDefEncoding() = 0;
virtual uint64_t GetTargetInstFlags(int opcode) = 0;