/external/google-breakpad/src/common/ |
D | stabs_reader_unittest.cc | 222 MOCK_METHOD2(StartFunction, bool(const string &, uint64_t)); 297 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun1"), 0xa049f4b1U)) in TEST_F() 307 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun2"), 0xbf27cf93U)) in TEST_F() 360 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun3_1"), 0xbbd4a145U)) in TEST_F() 378 EXPECT_CALL(mock_handler, StartFunction(_, _)) in TEST_F() 432 EXPECT_CALL(mock_handler, StartFunction(Eq("arsenic"), 0x7fbcccaeU)) in TEST_F() 441 EXPECT_CALL(mock_handler, StartFunction(Eq("selenium"), 0xa8e120b0U)) in TEST_F() 500 StartFunction(Eq("function 1"), 0xbb5ab70ecdd23bfeULL)) in TEST_F() 505 StartFunction(Eq("function 2"), 0xc954de9b8fb3e5e2ULL)) in TEST_F() 510 StartFunction(Eq("function 3"), 0xdff98c9a35386e1fULL)) in TEST_F() [all …]
|
D | stabs_to_module_unittest.cc | 51 EXPECT_TRUE(h.StartFunction("function", 0xfde4abbed390c394LL)); in TEST() 113 EXPECT_TRUE(h.StartFunction("funcfoo", in TEST() 116 EXPECT_TRUE(h.StartFunction("funcfoo", in TEST() 146 EXPECT_TRUE(h.StartFunction("function", 0xb4513962eff94e92LL)); in TEST() 196 EXPECT_TRUE(h.StartFunction("_ZNSt6vectorIySaIyEE9push_backERKy", in TEST() 236 EXPECT_TRUE(h.StartFunction("function", 0x2a133596)); in TEST()
|
D | stabs_to_module.h | 79 bool StartFunction(const string &name, uint64_t address);
|
D | stabs_reader.h | 296 virtual bool StartFunction(const string &name, uint64_t address) { in StartFunction() function
|
D | stabs_to_module.cc | 90 bool StabsToModule::StartFunction(const string &name, in StartFunction() function in google_breakpad::StabsToModule
|
D | stabs_reader.cc | 233 if (! handler_->StartFunction(name, function_address)) in ProcessFunction()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITDwarfEmitter.h | 40 unsigned char* StartFunction, 50 unsigned char* StartFunction, 60 unsigned char* StartFunction,
|
D | JITDwarfEmitter.cpp | 39 unsigned char* StartFunction, in EmitDwarfTable() argument 51 unsigned char* ExceptionTable = EmitExceptionTable(&F, StartFunction, in EmitDwarfTable() 60 StartFunction, EndFunction, ExceptionTable); in EmitDwarfTable() 198 unsigned char* StartFunction, in EmitExceptionTable() argument 413 BeginLabelPtr = (intptr_t)StartFunction; in EmitExceptionTable() 417 JCE->emitInt32(BeginLabelPtr - (intptr_t)StartFunction); in EmitExceptionTable() 434 JCE->emitInt32(PadLabelPtr - (intptr_t)StartFunction); in EmitExceptionTable() 541 unsigned char* StartFunction, in EmitEHFrame() argument 552 JCE->emitInt32(StartFunction - (unsigned char*)JCE->getCurrentPCValue()); in EmitEHFrame() 553 JCE->emitInt32(EndFunction - StartFunction); in EmitEHFrame() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGDeclCXX.cpp | 212 CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn, FI, FunctionArgList()); in createAtExitStub() 505 StartFunction(GlobalDecl(D), getContext().VoidTy, Fn, in GenerateCXXGlobalVarDeclInitFunc() 528 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, in GenerateCXXGlobalInitFunc() 579 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, in GenerateCXXGlobalDtorsFunc() 617 StartFunction(VD, getContext().VoidTy, fn, FI, args); in generateDestroyHelper()
|
D | CGBlocks.cpp | 1193 StartFunction(blockDecl, fnType->getReturnType(), fn, fnInfo, args, in GenerateBlockFunction() 1359 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateCopyHelperFunction() 1534 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateDestroyHelperFunction() 1819 CGF.StartFunction(FD, R, Fn, FI, args); in generateByrefCopyHelper() 1893 CGF.StartFunction(FD, R, Fn, FI, args); in generateByrefDisposeHelper()
|
D | CGOpenMPRuntimeNVPTX.cpp | 137 CGF.StartFunction(GlobalDecl(), Ctx.VoidTy, WST.WorkerFn, *WST.CGFI, {}); in emitWorkerFunction()
|
D | CGOpenMPRuntime.cpp | 763 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FnInfo, Args); in emitCombinerOrInitializer() 1798 CtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidPtrTy, Fn, FI, in emitThreadPrivateVarDefinition() 1830 DtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI, Args, in emitThreadPrivateVarDefinition() 1873 InitCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, InitFunction, in emitThreadPrivateVarDefinition() 2184 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args); in emitCopyprivateCopyFunction() 2775 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, FI, Args, SourceLocation()); in createOffloadingBinaryDescriptorFunction() 3287 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, TaskEntry, TaskEntryFnInfo, Args); in emitProxyTaskFunction() 3383 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, DestructorFn, DestructorFnInfo, in emitDestructorsFunction() 3471 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskPrivatesMap, in emitTaskPrivateMappingFunction() 3628 CGF.StartFunction(GlobalDecl(), C.VoidTy, TaskDup, TaskDupFnInfo, Args); in emitTaskDupFunction() [all …]
|
D | CodeGenFunction.cpp | 653 void CodeGenFunction::StartFunction(GlobalDecl GD, in StartFunction() function in CodeGenFunction 1027 StartFunction(GD, ResTy, Fn, FnInfo, Args, Loc, BodyRange.getBegin()); in GenerateCode()
|
D | CGObjC.cpp | 539 StartFunction(OMD, OMD->getReturnType(), Fn, FI, args, in StartObjCMethod() 3217 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateObjCAtomicSetterCopyHelperFunction() 3297 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateObjCAtomicGetterCopyHelperFunction()
|
D | CGVTables.cpp | 235 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, in StartThunk()
|
D | CGException.cpp | 1677 StartFunction(GlobalDecl(), RetTy, Fn, FnInfo, Args, in startOutlinedSEHHelper()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | wasm-invalid-start.test | 8 StartFunction: 0
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | Wasm.h | 140 uint32_t startFunction() const { return StartFunction; } in startFunction() 255 uint32_t StartFunction = -1; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | wasm2yaml.cpp | 229 StartSec->StartFunction = Obj.startFunction(); in dump()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | WasmYAML.h | 282 uint32_t StartFunction; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/ |
D | yaml2wasm.cpp | 332 encodeULEB128(Section.StartFunction, OS); in writeSectionContent()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 895 StartFunction = readVaruint32(Ctx); in parseStartSection() 896 if (!isValidFunctionIndex(StartFunction)) in parseStartSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | WasmYAML.cpp | 110 IO.mapOptional("StartFunction", Section.StartFunction); in sectionMapping()
|
/external/v8/src/wasm/ |
D | function-body-decoder-impl.h | 604 F(StartFunction) \ 1264 CALL_INTERFACE(StartFunction); in Decode()
|
D | function-body-decoder.cc | 87 void StartFunction(FullDecoder* decoder) { in StartFunction() function in v8::internal::wasm::__anonfbb27c440111::WasmGraphBuildingInterface
|