Home
last modified time | relevance | path

Searched refs:guard (Results 1 – 11 of 11) sorted by relevance

/art/test/904-object-allocation/
Dtracking.cc60 std::lock_guard<std::mutex> guard(gEventsMutex); in ObjectAllocated() local
88 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test904_getTrackingEventMessages() local
/art/
DCPPLINT.cfg20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
/art/test/924-threads/
Dthreads.cc195 std::lock_guard<std::mutex> guard(gEventsMutex); in ThreadEvent() local
264 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test924_getThreadEventMessages() local
/art/compiler/optimizing/
Dinduction_var_analysis.cc112 HBasicBlock* guard = loop->GetPreHeader(); in IsGuardedBy() local
114 while (guard->GetPredecessors().size() == 1 && in IsGuardedBy()
115 guard->GetSuccessors().size() == 1) { in IsGuardedBy()
116 entry = guard; in IsGuardedBy()
117 guard = guard->GetSinglePredecessor(); in IsGuardedBy()
120 HInstruction* control = guard->GetLastInstruction(); in IsGuardedBy()
Dcode_generator_arm64.cc2292 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in HandleFieldGet() local
2347 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in HandleFieldSet() local
2775 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayGet() local
2838 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayGet() local
2868 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArrayLength() local
2940 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
2979 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
2999 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
3050 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitArraySet() local
4352 EmissionCheckScope guard(GetVIXLAssembler(), kMaxMacroInstructionSizeInBytes); in VisitInvokeInterface() local
[all …]
Dcode_generator_arm_vixl.cc1871 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateLongTestConstant() local
1947 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateLongTest() local
2026 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionGeneric() local
2089 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateEqualLong() local
2123 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionLong() local
2196 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionIntegralOrNonPrimitive() local
2239 ExactAssemblyScope guard(codegen->GetVIXLAssembler(), in GenerateConditionIntegralOrNonPrimitive() local
3129 ExactAssemblyScope guard(GetVIXLAssembler(), in VisitSelect() local
4982 ExactAssemblyScope guard(GetVIXLAssembler(), in HandleShift() local
5001 ExactAssemblyScope guard(GetVIXLAssembler(), in HandleShift() local
[all …]
Dnodes.h3212 HInstruction* guard, in HDeoptimize() argument
3225 SetRawInputAt(1, guard); in HDeoptimize()
Dintrinsics_arm64.cc126 vixl::EmissionCheckScope guard(codegen->GetVIXLAssembler(), kInvokeCodeMarginSizeInBytes); in EmitNativeCode() local
/art/test/912-classes/
Dclasses.cc284 std::lock_guard<std::mutex> guard(gEventsMutex); in Java_art_Test912_getClassLoadMessages() local
313 std::lock_guard<std::mutex> guard(gEventsMutex); in ClassLoadCallback() local
336 std::lock_guard<std::mutex> guard(gEventsMutex); in ClassPrepareCallback() local
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.cc497 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
504 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
535 ExactAssemblyScope guard(asm_.GetVIXLAssembler(), in CreateHandleScopeEntry() local
/art/runtime/base/
Dmutex.cc856 ConditionVariable::ConditionVariable(const char* name, Mutex& guard) in ConditionVariable() argument
857 : name_(name), guard_(guard) { in ConditionVariable()