/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/ |
H A D | BasicLogEvent.java | 38 protected Compilation compilation; 66 public Compilation getCompilation() { 70 public void setCompilation(Compilation compilation) {
|
H A D | LogEvent.java | 35 public Compilation getCompilation();
|
H A D | LogCompilation.java | 95 if (printInlining && c instanceof Compilation) { 96 Compilation comp = (Compilation)c; 121 if (e instanceof Compilation) { 122 Compilation c = (Compilation) e;
|
H A D | Compilation.java | 30 public class Compilation implements LogEvent { class in inherits:LogEvent 48 Compilation(int id) { method in class:Compilation 255 public Compilation getCompilation() {
|
H A D | UncommonTrapEvent.java | 81 public void setCompilation(Compilation compilation) {
|
H A D | LogParser.java | 85 Compilation c1 = a.getCompilation(); 86 Compilation c2 = b.getCompilation(); 141 private HashMap<String, Compilation> compiles = new HashMap<String, Compilation>(); 145 private Compilation compile; 195 Compilation c = log.compiles.get(nm.getId()); 284 compile = new Compilation(Integer.parseInt(search(atts, "compile_id", "-1")));
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_FpuStackSim_x86.hpp | 31 class Compilation; 35 Compilation* _compilation; 47 Compilation* compilation() const { return _compilation; } 52 FpuStackSim(Compilation* compilation);
|
H A D | c1_LinearScan_x86.hpp | 120 Compilation* _compilation; 133 Compilation* compilation() const { return _compilation; } 187 FpuStackAllocator(Compilation* compilation, LinearScan* allocator);
|
H A D | c1_FpuStackSim_x86.cpp | 60 FpuStackSim::FpuStackSim(Compilation* compilation)
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_Compiler.cpp | 83 int code_buffer_size = Compilation::desired_max_code_buffer_size() + 84 Compilation::desired_max_constant_size(); 107 // of Compilation to occur before we release the any 110 Compilation c(this, env, method, entry_bci, buffer_blob); 116 Compilation::print_timers();
|
H A D | c1_Compilation.cpp | 76 if (Compilation::current() != NULL) { 77 _log = Compilation::current()->log(); 93 // Implementation of Compilation 98 void Compilation::maybe_print_current_instruction() { 107 DebugInformationRecorder* Compilation::debug_info_recorder() const { 112 Dependencies* Compilation::dependency_recorder() const { 117 void Compilation::initialize() { 128 void Compilation::build_hir() { 202 void Compilation::emit_lir() { 234 void Compilation 483 Compilation::Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method, function in class:Compilation [all...] |
H A D | c1_CFGPrinter.hpp | 46 static void print_compilation(Compilation* compilation);
|
H A D | c1_Compilation.hpp | 60 class Compilation: public StackObj { class in inherits:StackObj 116 Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method, 118 ~Compilation(); 121 static Compilation* current() { 122 return (Compilation*) ciEnv::current()->compiler_data(); 241 // that might bailout, but forward all calls to Compilation 251 Compilation* _compilation; 255 InstructionMark(Compilation* compilation, Instruction* instr) { 269 void* operator new(size_t size) { return Compilation::current()->arena()->Amalloc(size); }
|
H A D | c1_IR.hpp | 138 class Compilation; 142 Compilation* _compilation; // the current compilation 158 BlockBegin* build_graph(Compilation* compilation, int osr_bci); 162 IRScope(Compilation* compilation, IRScope* caller, int caller_bci, ciMethod* method, int osr_bci, bool create_graph = false); 165 Compilation* compilation() const { return _compilation; } 259 Compilation* compilation() const { return scope()->compilation(); } 286 Compilation* _compilation; // the current compilation 294 IR(Compilation* compilation, ciMethod* method, int osr_bci); 298 Compilation* compilation() const { return _compilation; }
|
H A D | c1_Canonicalizer.hpp | 32 Compilation *_compilation; 36 Compilation *compilation() { return _compilation; } 53 Canonicalizer(Compilation* c, Value x, int bci) : _compilation(c), _canonical(x), _bci(bci) {
|
H A D | c1_LIRAssembler.hpp | 33 class Compilation; 43 Compilation* _compilation; 120 LIR_Assembler(Compilation* c); 123 Compilation* compilation() const { return _compilation; }
|
H A D | c1_CFGPrinter.cpp | 40 Compilation* _compilation; 62 void set_compilation(Compilation* compilation) { _compilation = compilation; } 83 void CFGPrinter::print_compilation(Compilation* compilation) {
|
H A D | c1_GraphBuilder.hpp | 173 Compilation* _compilation; // the current compilation 190 Compilation* compilation() const { return _compilation; } 402 GraphBuilder(Compilation* compilation, IRScope* scope);
|
H A D | c1_IR.cpp | 125 BlockBegin* IRScope::build_graph(Compilation* compilation, int osr_bci) { 133 IRScope::IRScope(Compilation* compilation, IRScope* caller, int caller_bci, ciMethod* method, int osr_bci, bool create_graph) 232 IR::IR(Compilation* compilation, ciMethod* method, int osr_bci) : 333 Compilation::current()->bailout("a node was not appended to the graph"); 433 Compilation* _compilation; 477 Compilation* compilation() const { return _compilation; } 479 ComputeLinearScanOrder(Compilation* c, BlockBegin* start_block); 487 ComputeLinearScanOrder::ComputeLinearScanOrder(Compilation* c, BlockBegin* start_block) :
|
H A D | c1_LinearScan.hpp | 136 Compilation* _compilation; 171 Compilation* compilation() const { return _compilation; } 403 // accessors used by Compilation 646 Compilation* _compilation; 658 Compilation* compilation() const { return _compilation; }
|
H A D | c1_ValueStack.cpp | 55 assert(kind != EmptyExceptionState || !Compilation::current()->env()->jvmti_can_access_local_variables(), "need locals");
|
H A D | c1_ValueStack.hpp | 78 (Compilation::current()->env()->jvmti_can_access_local_variables() && kind() == ExceptionState),
|
H A D | c1_LIRGenerator.hpp | 158 Compilation* _compilation; 436 Compilation* compilation() const { return _compilation; } 455 LIRGenerator(Compilation* compilation, ciMethod* method)
|
/openjdk7/jdk/test/com/sun/tools/extcheck/ |
H A D | TestExtcheckArgs.sh | 38 echo Compilation failure with exit status $rc
|
/openjdk7/hotspot/make/windows/ |
H A D | cross_build.bat | 33 echo Setting up Visual C++ Compilation Environment 47 echo Setting up 64-BIT Compilation Environment
|