Home | History | Annotate | Download | only in ppc

Lines Matching refs:isolate

21 UnaryMathFunctionWithIsolate CreateSqrtFunction(Isolate* isolate) {
30 MacroAssembler masm(isolate, buffer, static_cast<int>(actual_size),
45 Assembler::FlushICache(isolate, buffer, actual_size);
172 CodeAgingHelper::CodeAgingHelper(Isolate* isolate) {
173 USE(isolate);
180 new CodePatcher(isolate, young_sequence_.start(),
198 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) {
199 bool result = isolate->code_aging_helper()->IsYoung(sequence);
200 DCHECK(result || isolate->code_aging_helper()->IsOld(sequence));
204 Code::Age Code::GetCodeAge(Isolate* isolate, byte* sequence) {
205 if (IsYoungSequence(isolate, sequence)) return kNoAgeCodeAge;
214 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence,
216 uint32_t young_length = isolate->code_aging_helper()->young_sequence_length();
218 isolate->code_aging_helper()->CopyYoungSequenceTo(sequence);
219 Assembler::FlushICache(isolate, sequence, young_length);
222 Code* stub = GetCodeAgeStub(isolate, age);
223 CodePatcher patcher(isolate, sequence,