Searched refs:Peephole (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.hpp50 class Peephole;
407 //==============================Peephole Optimization==========================
408 //------------------------------Peephole---------------------------------------
409 class Peephole : public Form { class in inherits:Form
417 Peephole *_next;
421 Peephole();
422 ~Peephole();
425 void append_peephole(Peephole *next_peephole);
437 Peephole *next() { return _next; }
H A Dformsopt.cpp537 //==============================Peephole Optimization==========================
538 int Peephole::_peephole_counter = 0;
539 //------------------------------Peephole---------------------------------------
540 Peephole::Peephole() : _match(NULL), _constraint(NULL), _replace(NULL), _next(NULL) { function in class:Peephole
543 Peephole::~Peephole() {
547 void Peephole::append_peephole(Peephole *next_peephole) {
556 void Peephole
[all...]
H A Dadlparse.hpp41 class Peephole;
62 // ***** Peephole Section *****
141 void peep_match_parse(Peephole &peep); // Parse the peephole match rule
142 void peep_constraint_parse(Peephole &peep);// Parse the peephole constraints
143 void peep_replace_parse(Peephole &peep); // Parse peephole replacement rule
H A Dformssel.hpp51 class Peephole;
105 Peephole *_peephole; // List of peephole rules for instruction
137 virtual Peephole *peepholes() const;
139 virtual void append_peephole(Peephole *peep);
H A Dforms.hpp60 class Peephole;
H A Dadlparse.cpp2074 Peephole *peep; // Pointer to current peephole rule form
2079 peep = new Peephole(); // Build new Peephole object
2503 void ADLParser::peep_match_parse(Peephole &peep) {
2556 void ADLParser::peep_constraint_parse(Peephole &peep) {
2644 void ADLParser::peep_replace_parse(Peephole &peep) {
H A Dformssel.cpp161 Peephole *InstructForm::peepholes() const {
166 void InstructForm::append_peephole(Peephole *peephole) {
H A Doutput_c.cpp1414 // Define the Peephole method for an instruction node
1416 // Generate Peephole function header
1428 Peephole *peep;
/openjdk7/hotspot/src/share/vm/opto/
H A Dphase.hpp58 Peephole, // Apply peephole optimizations enumerator in enum:Phase::PhaseNumber
H A DphaseX.cpp1624 : PhaseTransform(Peephole), _regalloc(regalloc), _cfg(cfg) {
1705 tty->print_cr("Peephole: peephole rules applied: %d", _total_peepholes);

Completed in 616 milliseconds