Searched defs:FunctionId (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h1 //===- FunctionId.h ---------------------------------------------*- C++ -*-===//
18 class FunctionId { class in namespace:llvm::codeview
20 FunctionId() : Index(0) {} function in class:llvm::codeview::FunctionId
22 explicit FunctionId(uint32_t Index) : Index(Index) {} function in class:llvm::codeview::FunctionId
30 inline bool operator==(const FunctionId &A, const FunctionId &B) {
34 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
38 inline bool operator<(const FunctionId &A, const FunctionId
[all...]
/external/llvm/include/llvm/MC/
H A DMCCodeView.h32 uint32_t FunctionId; member in class:llvm::MCCVLoc
43 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column),
50 unsigned getFunctionId() const { return FunctionId; }
64 void setFunctionId(unsigned FID) { FunctionId = FID; }
H A DMCContext.h548 void setCurrentCVLoc(unsigned FunctionId, unsigned FileNo, unsigned Line, argument
550 CurrentCVLoc.setFunctionId(FunctionId);
/external/perf_data_converter/src/
H A Dbuilder.cc50 uint64 Builder::FunctionId(const char *name, const char *system_name, function in class:perftools::profiles::Builder
/external/v8/src/profiler/
H A Dsampling-heap-profiler.h89 typedef uint64_t FunctionId; typedef in class:v8::internal::SamplingHeapProfiler::AllocationNode
90 static FunctionId function_id(int script_id, int start_position,
110 std::map<FunctionId, AllocationNode*> children_;
/external/llvm/lib/MC/
H A DMCObjectStreamer.cpp368 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, argument
376 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column,
380 void MCObjectStreamer::EmitCVLinetableDirective(unsigned FunctionId, argument
383 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin,
385 this->MCStreamer::EmitCVLinetableDirective(FunctionId, Begin, End);
H A DMCStreamer.cpp206 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, argument
210 getContext().setCurrentCVLoc(FunctionId, FileNo, Line, Column, PrologueEnd,
214 void MCStreamer::EmitCVLinetableDirective(unsigned FunctionId, argument
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVInstruction.h1183 SPIRVFunctionCall():FunctionId(SPIRVID_INVALID) {}
1185 return get<SPIRVFunction>(FunctionId);
1187 _SPIRV_DEF_ENCDEC4(Type, Id, FunctionId, Args)
1191 SPIRVId FunctionId; member in class:SPIRV::SPIRVFunctionCall
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3226 /// ::= .cv_loc FunctionId FileNumber [LineNumber] [ColumnPos] [prologue_end]
3236 int64_t FunctionId = getTok().getIntVal();
3237 if (FunctionId < 0)
3291 getStreamer().EmitCVLocDirective(FunctionId, FileNumber, LineNumber,
3297 /// ::= .cv_linetable FunctionId, FnStart, FnEnd
3299 int64_t FunctionId = getTok().getIntVal(); local
3300 if (FunctionId < 0)
3325 getStreamer().EmitCVLinetableDirective(FunctionId, FnStartSym, FnEndSym);

Completed in 982 milliseconds