Shark: fix some minor typos (and thinkos)
Andrew Haley
aph at redhat.com
Thu Aug 14 08:57:40 PDT 2008
2008-08-14 Andrew Haley <aph at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
(SharkBuilder::SharkBuilder): Fix syntax error on template class
name.
* ports/hotspot/src/share/vm/shark/sharkBuilder.hpp (class
SharkBuilder): Likewise.
* ports/hotspot/src/share/vm/shark/sharkValue.hpp (class
SharkValue): Likewise.
* ports/hotspot/src/share/vm/shark/sharkCompiler.cpp
(SharkCompiler::compile_method): Properly declare temporaries.
diff -r a469b20018d9 ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBuilder.cpp Wed Aug 13 15:46:18 2008 +0100
+++ b/ports/hotspot/src/share/vm/shark/sharkBuilder.cpp Thu Aug 14 16:51:13 2008 +0100
@@ -29,7 +29,7 @@
using namespace llvm;
SharkBuilder::SharkBuilder()
- : IRBuilder(),
+ : IRBuilder<>(),
_module("shark"),
_module_provider(module()),
_execution_engine(ExecutionEngine::create(&_module_provider))
diff -r a469b20018d9 ports/hotspot/src/share/vm/shark/sharkBuilder.hpp
--- a/ports/hotspot/src/share/vm/shark/sharkBuilder.hpp Wed Aug 13 15:46:18 2008 +0100
+++ b/ports/hotspot/src/share/vm/shark/sharkBuilder.hpp Thu Aug 14 16:51:13 2008 +0100
@@ -23,7 +23,7 @@
*
*/
-class SharkBuilder : public llvm::IRBuilder {
+class SharkBuilder : public llvm::IRBuilder<> {
public:
SharkBuilder();
diff -r a469b20018d9 ports/hotspot/src/share/vm/shark/sharkCompiler.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkCompiler.cpp Wed Aug 13 15:46:18 2008 +0100
+++ b/ports/hotspot/src/share/vm/shark/sharkCompiler.cpp Thu Aug 14 16:51:13 2008 +0100
@@ -101,9 +101,11 @@
function.function()->dump();
}
if (SharkTraceInstalls) {
+ uint32_t *start = NULL;
+ uint32_t *limit = NULL;
#ifdef PPC
- uint32_t *start = *(uint32_t **) bb->instructions_begin();
- uint32_t *limit = start;
+ start = *(uint32_t **) bb->instructions_begin();
+ limit = start;
while (*limit)
limit++;
#else
diff -r a469b20018d9 ports/hotspot/src/share/vm/shark/sharkValue.hpp
--- a/ports/hotspot/src/share/vm/shark/sharkValue.hpp Wed Aug 13 15:46:18 2008 +0100
+++ b/ports/hotspot/src/share/vm/shark/sharkValue.hpp Thu Aug 14 16:51:13 2008 +0100
@@ -182,7 +182,7 @@
{
return llvm_value();
}
- llvm::Value* intptr_value(llvm::IRBuilder* builder) const
+ llvm::Value* intptr_value(llvm::IRBuilder<>* builder) const
{
assert(is_jobject(), "should be");
return builder->CreatePtrToInt(llvm_value(), SharkType::intptr_type());
More information about the distro-pkg-dev
mailing list