Searched refs:_lir (Results 1 - 6 of 6) sorted by relevance

/openjdk9/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.hpp130 LIR_List* _lir; member in class:VALUE_OBJ_CLASS_SPEC
147 LIR_List* lir() { return _lir; }
148 void set_lir(LIR_List* lir) { _lir = lir; }
H A Dc1_LinearScan_x86.cpp113 , _lir(NULL)
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.hpp167 LIR_List* _lir; member in class:LIRGenerator
178 _lir->set_file_and_line(file, line);
179 return _lir;
183 return _lir;
H A Dc1_Instruction.hpp1630 LIR_List* _lir; // the low level intermediate representation for this block
1678 , _lir(NULL)
1709 LIR_List* lir() const { return _lir; }
1734 void set_lir(LIR_List* lir) { _lir = lir; }
H A Dc1_LIR.hpp2267 LIR_List* _lir; // the lir list where ops of this buffer should be inserted later (NULL when uninitialized) member in class:LIR_InsertionBuffer
2285 LIR_InsertionBuffer() : _lir(NULL), _index_and_count(8), _ops(8) { }
2288 void init(LIR_List* lir) { assert(!initialized(), "already initialized"); _lir = lir; _index_and_count.clear(); _ops.clear(); }
2289 bool initialized() const { return _lir != NULL; }
2291 void finish() { _lir = NULL; }
2294 LIR_List* lir_list() const { return _lir; }
H A Dc1_LIRGenerator.cpp326 _lir = new LIR_List(compilation(), block);
327 block->set_lir(_lir);

Completed in 125 milliseconds