Home
last modified time | relevance | path

Searched refs:FuncId (Results 1 – 24 of 24) sorted by relevance

/external/llvm/test/tools/llvm-readobj/
Dcodeview-merging.test24 OBJ1: FuncId (0x100D) {
30 OBJ1-NEXT: FuncId (0x100E) {
36 OBJ1-NOT: FuncId
38 OBJ2: FuncId (0x100D) {
45 OBJ2: FuncId (0x1069) {
51 OBJ2-NOT: FuncId
53 CHECK: FuncId (0x100D) {
59 CHECK-NEXT: FuncId (0x100E) {
65 CHECK-NOT: FuncId
Dcodeview-types.test23 // CHECK-DAG: {{^ *FuncId (.*) {$}}
/external/llvm/include/llvm/ExecutionEngine/Orc/
DRPCUtils.h79 template <typename FunctionIdT, FunctionIdT FuncId, typename FnT>
83 template <typename FunctionIdT, FunctionIdT FuncId, typename RetT,
85 class FunctionHelper<FunctionIdT, FuncId, RetT(ArgTs...)> {
87 static_assert(FuncId != RPCFunctionIdTraits<FunctionIdT>::InvalidId &&
88 FuncId != RPCFunctionIdTraits<FunctionIdT>::ResponseId,
92 static const FunctionIdT Id = FuncId;
141 template <typename FunctionIdT, FunctionIdT FuncId, typename... ArgTs>
142 class FunctionHelper<FunctionIdT, FuncId, void(ArgTs...)> {
144 static_assert(FuncId != RPCFunctionIdTraits<FunctionIdT>::InvalidId &&
145 FuncId != RPCFunctionIdTraits<FunctionIdT>::ResponseId,
[all …]
/external/llvm/include/llvm/MC/
DMCCodeView.h127 std::vector<MCCVLineEntry> getFunctionLineEntries(unsigned FuncId) { in getFunctionLineEntries() argument
130 auto I = MCCVLineStartStop.find(FuncId); in getFunctionLineEntries()
134 if (MCCVLines[Idx].getFunctionId() == FuncId) in getFunctionLineEntries()
139 std::pair<size_t, size_t> getLineExtent(unsigned FuncId) { in getLineExtent() argument
140 auto I = MCCVLineStartStop.find(FuncId); in getLineExtent()
156 void emitLineTableForFunction(MCObjectStreamer &OS, unsigned FuncId,
/external/llvm/test/DebugInfo/COFF/
Dinlining-padding.ll6 ; CHECK: FuncId (0x1002) {
13 ; CHECK: FuncId (0x1003) {
20 ; CHECK: FuncId (0x1004) {
27 ; CHECK: FuncId (0x1005) {
Dinlining.ll95 ; ASM: # FuncId (0x1002) {
105 ; ASM: # FuncId (0x1003) {
129 ; OBJ: FuncId (0x1002) {
135 ; OBJ: FuncId (0x1003) {
141 ; OBJ: FuncId (0x1004) {
Dtypes-calling-conv.ll105 ; CHECK: FuncId (0x100A) {
120 ; CHECK: FuncId (0x100C) {
135 ; CHECK: FuncId (0x100E) {
150 ; CHECK: FuncId (0x1010) {
Dinlining-same-name.ll6 ; CHECK: FuncId (0x1002) {
Dtypes-array.ll30 ; CHECK: FuncId (0x1002) {
Dscopes.ll22 ; CHECK-LABEL: FuncId ({{.*}}) {
Dtypes-recursive-struct.ll39 ; CHECK: FuncId (0x1002) {
Ddefer-complete-type.ll145 ; CHECK: FuncId (0x100D) {
Dtypes-array-advanced.ll40 ; CHECK: FuncId (0x1002) {
Dtypes-basic.ll56 ; CHECK: FuncId (0x1002) {
210 ; CHECK: FuncId (0x1012) {
Dtypes-non-virtual-methods.ll46 ; CHECK: FuncId (0x1002) {
Dtypes-data-members.ll57 ; CHECK: FuncId (0x1002) {
/external/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp66 enum FuncId : uint32_t { enum in DummyRPC
67 VoidBoolId = RPCFunctionIdTraits<FuncId>::FirstValidId,
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncId.java38 public class FuncId extends FunctionOneArg class
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp244 FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName); in getFuncIdForSubprogram() local
245 TI = TypeTable.writeFuncId(FuncId); in getFuncIdForSubprogram()
336 unsigned FuncId = CurFn->FuncId; in maybeRecordLocation() local
342 FuncId = in maybeRecordLocation()
358 OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(), in maybeRecordLocation()
707 OS.EmitCVLinetableDirective(FI.FuncId, Fn, FI.End); in emitDebugInfoForFunction()
875 CurFn->FuncId = NextFuncId++; in beginFunction()
DCodeViewDebug.h99 unsigned FuncId = 0; member
/external/llvm/lib/MC/
DMCCodeView.cpp149 unsigned FuncId, in emitLineTableForFunction() argument
163 std::vector<MCCVLineEntry> Locs = getFunctionLineEntries(FuncId); in emitLineTableForFunction()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DFunctionTable.java182 m_functions[FUNC_ID] = org.apache.xpath.functions.FuncId.class;
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecords.def77 TYPE_RECORD(LF_FUNC_ID, 0x1601, FuncId)
DTypeRecord.h716 : TypeRecord(TypeRecordKind::FuncId), ParentScope(ParentScope), in FuncIdRecord()