Searched refs:CCs (Results 1 - 6 of 6) sorted by relevance

/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp23 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv"); local
27 for (unsigned i = 0, e = CCs.size(); i != e; ++i) {
28 O << "static bool " << CCs[i]->getName()
30 << std::string(CCs[i]->getName().size()+13, ' ')
32 << std::string(CCs[i]->getName().size()+13, ' ')
37 for (unsigned i = 0, e = CCs.size(); i != e; ++i)
38 EmitCallingConv(CCs[i], O);
/external/valgrind/main/cachegrind/
H A Dcg_diff.in189 my %CCs; # hash("$filename#$funcname" => CC array)
205 $currCC = $CCs{$currFileFuncName};
208 $CCs{$currFileFuncName} = $currCC;
239 return ($cmd, \@events, \%CCs, $summaryCC);
253 # Individual CCs, organised by filename/funcname/line_num.
H A Dcg_annotate.in47 #12. switched from hash CCs to array CCs 1.61s
72 # CCs are arrays, the counts corresponding to @events, with 'undef'
73 # representing '.'. This makes things fast (faster than using hashes for CCs)
85 # Individual CCs, organised by filename and line_num for easy annotation.
523 my @CCs = @_;
533 foreach my $CC (@CCs) {
768 # Get file's CCs
/external/valgrind/main/callgrind/
H A Dcallgrind_control.in155 my @CCs = @_;
165 foreach my $CC (@CCs) {
H A Dcallgrind_annotate.in51 #12. switched from hash CCs to array CCs 1.61s
75 # CCs are arrays, the counts corresponding to @events, with 'undef'
76 # representing '.'. This makes things fast (faster than using hashes for CCs)
89 # Individual CCs, organised by filename and line_num for easy annotation.
791 my @CCs = @_;
801 foreach my $CC (@CCs) {
1084 # Get file's CCs
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp330 static void InitLibcallCallingConvs(CallingConv::ID *CCs) { argument
332 CCs[i] = CallingConv::C;
523 static void InitCmpLibcallCCs(ISD::CondCode *CCs) { argument
524 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
525 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
526 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
527 CCs[RTLIB::UNE_F32] = ISD::SETNE;
528 CCs[RTLIB::UNE_F64] = ISD::SETNE;
529 CCs[RTLIB::OGE_F32] = ISD::SETGE;
530 CCs[RTLI
[all...]

Completed in 358 milliseconds